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 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
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ export XCRESULTS_VERSION='1.19.1'
55export YEETD_VERSION=' 1.0'
66export MINT_VERSION=' 0.17.5'
77export 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
7474 puts " Running yeetd daemon"
7575 yeetd &
7676fi
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