This commit is contained in:
ConfiG 2024-06-28 14:36:08 +03:00 committed by GitHub
parent b4c9b62e32
commit 913cdaa9d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -149,14 +149,14 @@ jobs:
uses: ./.github/actions/build-debug-info
with:
has-sccache: false
if: false
#- name: Setup caches
# uses: ./.github/actions/setup-cache
# with:
# host: mac
# target: mac
# use-ccache: false
- name: Setup caches
uses: ./.github/actions/setup-cache
with:
host: mac
target: mac
use-ccache: false
if: false
- name: Setup Ninja
uses: ./.github/actions/setup-ninja
@ -165,17 +165,11 @@ jobs:
- name: Install LLVM
run: |
brew install llvm
brew install llvm@17
echo "/opt/homebrew/opt/llvm/bin" >> $GITHUB_PATH
ls /opt/homebrew/opt/llvm/
ls /opt/homebrew/opt/llvm/bin/
ls /opt/homebrew/Cellar/llvm/
ls /opt/homebrew/Cellar/llvm/18.1.7/
ls /opt/homebrew/Cellar/llvm/18.1.7/lib/
- name: Setup CLI
uses: geode-sdk/cli/.github/actions/setup@main
if: false
- name: Configure
run: >
@ -190,9 +184,6 @@ jobs:
${{ steps.build-debug-info.outputs.extra-configure }}
env:
MACOSX_DEPLOYMENT_TARGET: "10.15"
CPPFLAGS: "-I/opt/homebrew/opt/llvm/include"
LDFLAGS: "-L/opt/homebrew/opt/llvm/lib"
if: false
- name: Build
run: |
@ -200,27 +191,21 @@ jobs:
${{ steps.build-debug-info.outputs.extra-build }}
env:
MACOSX_DEPLOYMENT_TARGET: "10.15"
CPPFLAGS: "-I/opt/homebrew/opt/llvm/include"
LDFLAGS: "-L/opt/homebrew/opt/llvm/lib"
if: false
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: geode-mac
path: ./bin/nightly
if: false
- name: Package Installer
run: ./installer/mac/package.sh ./bin/nightly ./installer/mac/geode-installer-mac.pkg
if: false
- name: Upload Installer
uses: actions/upload-artifact@v4
with:
name: geode-installer-mac
path: './installer/mac/geode-installer-mac.pkg'
if: false
- name: Complete Build Debug Info
uses: ./.github/actions/build-debug-info-post