8000 [CI] Install an older ipsw version (#812) · GetStream/stream-chat-swiftui@9be4141 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9be4141

Browse files
[CI] Install an older ipsw version (#812)
1 parent d7980c9 commit 9be4141

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
env:
7373
INSTALL_ALLURE: true
7474
INSTALL_YEETD: true
75+
INSTALL_IPSW: true
7576
SKIP_MINT_BOOTSTRAP: true
7677
- uses: ./.github/actions/setup-ios-runtime
7778
if: ${{ matrix.setup_runtime }}

Githubfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ export XCRESULTS_VERSION='1.19.1'
55
export YEETD_VERSION='1.0'
66
export MINT_VERSION='0.17.5'
77
export SONAR_VERSION='6.2.1.4610'
8+
export IPSW_VERSION='3.1.592'

Scripts/bootstrap.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,12 @@ if [[ ${INSTALL_YEETD-default} == true ]]; then
7474
puts "Running yeetd daemon"
7575
yeetd &
7676
fi
77+
78+
if [[ ${INSTALL_IPSW-default} == true ]]; then
79+
puts "Install ipsw v${IPSW_VERSION}"
80+
FILE="ipsw_${IPSW_VERSION}_macOS_universal.tar.gz"
81+
wget "https://github.com/blacktop/ipsw/releases/download/v${IPSW_VERSION}/${FILE}"
82+
tar -xzf "$FILE"
83+
chmod +x ipsw
84+
sudo mv ipsw /usr/local/bin/
85+
fi

0 commit comments

Comments
 (0)
0