-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add all compile options again
- Loading branch information
1 parent
57acb89
commit a7548a5
Showing
1 changed file
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '15.3' | ||
|
||
- name: Setup Theos | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -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 | ||
|