Skip to content

Commit

Permalink
chore: add all compile options again
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfzxcvbn committed Jun 16, 2024
1 parent 57acb89 commit a7548a5
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/build-swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.3'

- name: Setup Theos
uses: actions/[email protected]
with:
Expand All @@ -42,11 +42,31 @@ jobs:
tar -xvf data.tar.lzma
cp -r var/jb/Library/Frameworks/SwiftProtobuf.framework $THEOS/lib/iphone/rootless
- name: Install make
- name: Install dependencies
run: |
brew install make
brew install make dpkg ldid
echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
- name: Build EeveeSpotify (debug)
run: |
make package
echo "filename=$(find . -name '*debug*' -path './packages/*' | cut -d/ -f3)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: ${{env.filename}}
path: packages/${{env.filename}}
if-no-files-found: error

- name: Build EeveeSpotify (rootful)
run: |
make package FINALPACKAGE=1
echo "filename=$(find . -not -name '*debug*' -path './packages/*' | cut -d/ -f3)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: ${{env.filename}}
path: packages/${{env.filename}}
if-no-files-found: error

- name: Build EeveeSpotify (rootless)
run: |
make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
Expand Down

0 comments on commit a7548a5

Please sign in to comment.