Skip to content

Commit 5836f4b

Browse files
Test 41 of CI
1 parent ba73ab0 commit 5836f4b

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/ios-simulator-tests.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,23 @@ jobs:
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
@@ -47,23 +64,6 @@ jobs:
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

0 commit comments

Comments
 (0)