File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed
actions/setup-ios-runtime Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 7
7
shell : bash
8
8
run : |
9
9
sudo rm -rfv ~/Library/Developer/CoreSimulator/* || true
10
- brew install blacktop/tap/ipsw
11
10
bundle exec fastlane install_runtime ios:${{ inputs.version }}
12
11
sudo rm -rfv *.dmg || true
13
12
xcrun simctl list runtimes
Original file line number Diff line number Diff line change 79
79
INSTALL_ALLURE : true
80
80
INSTALL_VIDEO_BUDDY : true
81
81
INSTALL_YEETD : true
82
+ INSTALL_IPSW : true
82
83
SKIP_MINT_BOOTSTRAP : true
83
84
- uses : ./.github/actions/setup-ios-runtime
84
85
if : ${{ matrix.setup_runtime }}
@@ -154,6 +155,7 @@ jobs:
154
155
- uses : ./.github/actions/bootstrap
155
156
env :
156
157
INSTALL_YEETD : true
158
+ INSTALL_IPSW : true
157
159
- uses : ./.github/actions/setup-ios-runtime
158
160
if : ${{ matrix.setup_runtime }}
159
161
timeout-minutes : 60
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ export PLAYWRIGHT_VERSION='1.41.2'
7
7
export YEETD_VERSION=' 1.0'
8
8
export MINT_VERSION=' 0.17.5'
9
9
export SONAR_VERSION=' 6.2.1.4610'
10
+ export IPSW_VERSION=' 3.1.592'
Original file line number Diff line number Diff line change @@ -82,3 +82,12 @@ if [[ ${INSTALL_YEETD-default} == true ]]; then
82
82
puts " Running yeetd daemon"
83
83
yeetd &
84
84
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
You can’t perform that action at this time.
0 commit comments