Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jayluxferro authored Jun 12, 2023
1 parent 6214748 commit 77c695f
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 77c695f

Please sign in to comment.