-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6214748
commit 77c695f
Showing
1 changed file
with
16 additions
and
4 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
|
||
jobs: | ||
build-v2: | ||
runs-on: macos-13 | ||
runs-on: macos-latest | ||
steps: | ||
- name: Check out repository od | ||
uses: actions/checkout@v2 | ||
|
@@ -22,8 +22,14 @@ jobs: | |
- name: Install tools | ||
run: | | ||
brew update | ||
brew install libzip openssl libplist autoconf automake libtool autoconf-archive pkg-config ninja libusbmuxd ideviceinstaller ios-deploy | ||
brew install libzip openssl libplist autoconf automake libtool autoconf-archive pkg-config ninja | ||
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/[email protected]/lib/pkgconfig | ||
git clone https://github.com/libimobiledevice/libplist | ||
cd libplist && ./autogen.sh --without-cython && sudo make install && cd .. | ||
cd libusbmuxd && ./autogen.sh && sudo make install && cd .. | ||
xcrun --sdk macosx --show-sdk-path | ||
brew install ideviceinstaller | ||
brew install ios-deploy | ||
pip3 install wheel | ||
pip3 install . | ||
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | ||
|
@@ -70,7 +76,7 @@ jobs: | |
./*.so | ||
build-v3: | ||
runs-on: macos-13 | ||
runs-on: macos-latest | ||
steps: | ||
- name: Check out repository od | ||
uses: actions/checkout@v2 | ||
|
@@ -85,8 +91,14 @@ jobs: | |
- name: Install tools | ||
run: | | ||
brew update | ||
brew install libzip openssl libplist autoconf automake libtool autoconf-archive pkg-config ninja libusbmuxd ideviceinstaller ios-deploy | ||
brew install libzip openssl libplist autoconf automake libtool autoconf-archive pkg-config ninja | ||
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/[email protected]/lib/pkgconfig | ||
git clone https://github.com/libimobiledevice/libplist | ||
cd libplist && ./autogen.sh --without-cython && sudo make install && cd .. | ||
cd libusbmuxd && ./autogen.sh && sudo make install && cd .. | ||
xcrun --sdk macosx --show-sdk-path | ||
brew install ideviceinstaller | ||
brew install ios-deploy | ||
pip3 install wheel | ||
pip3 install . | ||
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | ||
|