[Squash:] EeveSpotify: Merge support for BeautifulLyrics Lyric Provider #9
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
name: Build Swift | |
on: | |
push: | |
branches: [ "swift" ] | |
pull_request: | |
branches: [ "swift" ] | |
jobs: | |
build: | |
runs-on: macos-14 | |
env: | |
THEOS: ${{ github.workspace }}/theos | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.3' | |
- name: Setup Theos | |
uses: actions/checkout@v4 | |
with: | |
repository: theos/theos | |
path: ${{ github.workspace }}/theos | |
submodules: recursive | |
- name: Install Dependencies | |
run: | | |
brew install make dpkg ldid | |
echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH | |
- name: Copy SwiftProtobuf (rootful) | |
run: | | |
mkdir swiftprotobuf && cd "$_" | |
wget https://github.com/whoeevee/EeveeSpotify/releases/download/swift2.0/org.swift.protobuf.swiftprotobuf_1.26.0_iphoneos-arm.deb | |
ar -x org.swift.protobuf.swiftprotobuf_1.26.0_iphoneos-arm.deb | |
tar -xvf data.tar.lzma | |
cp -r Library/Frameworks/SwiftProtobuf.framework $THEOS/lib | |
- name: Copy SwiftProtobuf (rootless) | |
run: | | |
mkdir swiftprotobuf-rootless && cd "$_" | |
wget https://github.com/whoeevee/EeveeSpotify/releases/download/swift2.0/org.swift.protobuf.swiftprotobuf_1.26.0_iphoneos-arm64.deb | |
ar -x org.swift.protobuf.swiftprotobuf_1.26.0_iphoneos-arm64.deb | |
tar -xvf data.tar.lzma | |
cp -r var/jb/Library/Frameworks/SwiftProtobuf.framework $THEOS/lib/iphone/rootless | |
- 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 | |
echo "filename=$(find . -name '*arm64*' -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 |