File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
actions/setup-ios-runtime Expand file tree Collapse file tree 4 files changed +11
-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 72
72
env :
73
73
INSTALL_ALLURE : true
74
74
INSTALL_YEETD : true
75
+ INSTALL_IPSW : true
75
76
SKIP_MINT_BOOTSTRAP : true
76
77
- uses : ./.github/actions/setup-ios-runtime
77
78
if : ${{ matrix.setup_runtime }}
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ export XCRESULTS_VERSION='1.19.1'
5
5
export YEETD_VERSION=' 1.0'
6
6
export MINT_VERSION=' 0.17.5'
7
7
export SONAR_VERSION=' 6.2.1.4610'
8
+ export IPSW_VERSION=' 3.1.592'
Original file line number Diff line number Diff line change @@ -74,3 +74,12 @@ if [[ ${INSTALL_YEETD-default} == true ]]; then
74
74
puts " Running yeetd daemon"
75
75
yeetd &
76
76
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
You can’t perform that action at this time.
0 commit comments