File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed
Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 2727 echo "✅ Simulator created (uuid: '$UDID')"
2828 echo "udid=$UDID" >> $GITHUB_OUTPUT
2929
30+ boot-simulator :
31+ name : Boot iOS Simulator
32+ runs-on : macos-15
33+ needs : create-simulator
34+ steps :
35+ # - name: Checkout repository
36+ # uses: actions/checkout@v3
37+
38+ # - name: List available simulator runtimes
39+ # run: xcrun simctl list runtimes
40+
41+ - name : Boot iOS Simulator
42+ run : |
43+ echo "🛠️ Booting simulator: $SIMULATOR_NAME ($UDID)"
44+ xcrun simctl boot "$UDID"
45+ echo "✅ Simulator booted."
46+
3047 - name : Set Simulator Language and Locale
3148 run : |
3249 echo
4764
4865 echo "✅ Simulator language set."
4966
50- boot-simulator :
51- name : Boot iOS Simulator
52- runs-on : macos-15
53- needs : create-simulator
54- steps :
55- - name : Checkout repository
56- uses : actions/checkout@v3
57-
58- # - name: List available simulator runtimes
59- # run: xcrun simctl list runtimes
60-
61- - name : Boot iOS Simulator
62- run : |
63- echo "🛠️ Booting simulator: $SIMULATOR_NAME ($UDID)"
64- xcrun simctl boot "$UDID"
65- echo "✅ Simulator booted."
66-
6767 build-and-setup-server :
6868 name : Build App and Setup Server
6969 runs-on : macos-15
You can’t perform that action at this time.
0 commit comments