Skip to content

Commit dbfe817

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

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
runs-on: macos-15
1515
outputs:
1616
simulator-udid: ${{ steps.create-simulator.outputs.udid }}
17+
simulator-name: ${{ steps.create-simulator.outputs.simulator-name }}
1718
steps:
1819
- name: Create iOS Simulator
1920
id: create-simulator
@@ -26,11 +27,15 @@ jobs:
2627
UDID=$(xcrun simctl create "$SIMULATOR_NAME" "$DEVICE_TYPE" "$RUNTIME")
2728
echo "✅ Simulator created (uuid: '$UDID')"
2829
echo "udid=$UDID" >> $GITHUB_OUTPUT
30+
echo "simulator-name=$SIMULATOR_NAME" >> $GITHUB_OUTPUT
2931
3032
boot-simulator:
3133
name: Boot iOS Simulator
3234
runs-on: macos-15
3335
needs: create-simulator
36+
env:
37+
SIMULATOR_NAME: ${{ needs.create-simulator.outputs.simulator-name }}
38+
UDID: ${{ needs.create-simulator.outputs.simulator-udid }}
3439
steps:
3540
# - name: Checkout repository
3641
# uses: actions/checkout@v3

0 commit comments

Comments
 (0)