Skip to content

Commit 0d71c60

Browse files
[CI] Install an older ipsw version (#765)
1 parent 8be93ca commit 0d71c60

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.github/actions/setup-ios-runtime/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ runs:
77
shell: bash
88
run: |
99
sudo rm -rfv ~/Library/Developer/CoreSimulator/* || true
10-
brew install blacktop/tap/ipsw
1110
bundle exec fastlane install_runtime ios:${{ inputs.version }}
1211
sudo rm -rfv *.dmg || true
1312
xcrun simctl list runtimes

.github/workflows/cron-checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
INSTALL_ALLURE: true
8080
INSTALL_VIDEO_BUDDY: true
8181
INSTALL_YEETD: true
82+
INSTALL_IPSW: true
8283
SKIP_MINT_BOOTSTRAP: true
8384
- uses: ./.github/actions/setup-ios-runtime
8485
if: ${{ matrix.setup_runtime }}
@@ -154,6 +155,7 @@ jobs:
154155
- uses: ./.github/actions/bootstrap
155156
env:
156157
INSTALL_YEETD: true
158+
INSTALL_IPSW: true
157159
- uses: ./.github/actions/setup-ios-runtime
158160
if: ${{ matrix.setup_runtime }}
159161
timeout-minutes: 60

Githubfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ export PLAYWRIGHT_VERSION='1.41.2'
77
export YEETD_VERSION='1.0'
88
export MINT_VERSION='0.17.5'
99
export SONAR_VERSION='6.2.1.4610'
10+
export IPSW_VERSION='3.1.592'

Scripts/bootstrap.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,12 @@ if [[ ${INSTALL_YEETD-default} == true ]]; then
8282
puts "Running yeetd daemon"
8383
yeetd &
8484
fi
85+
86+
if [[ ${INSTALL_IPSW-default} == true ]]; then
87+
puts "Install ipsw v${IPSW_VERSION}"
88+
FILE="ipsw_${IPSW_VERSION}_macOS_universal.tar.gz"
89+
wget "https://github.com/blacktop/ipsw/releases/download/v${IPSW_VERSION}/${FILE}"
90+
tar -xzf "$FILE"
91+
chmod +x ipsw
92+
sudo mv ipsw /usr/local/bin/
93+
fi

0 commit comments

Comments
 (0)