Skip to content

Commit 71af8f0

Browse files
committed
Fix env vars
1 parent 9c7328f commit 71af8f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/smoke-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ jobs:
8383
if: ${{ github.event.inputs.record_snapshots_uikit != 'true' || github.event.inputs.record_snapshots_swiftui == 'true' }}
8484
env:
8585
GITHUB_TOKEN: ${{ secrets.CI_BOT_GITHUB_TOKEN }} # to open a PR
86+
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181
87+
XCODE_VERSION: "16.4" # TODO: IOS-1181
8688
steps:
8789
- uses: actions/[email protected]
8890
- uses: ./.github/actions/bootstrap
8991
env:
9092
INSTALL_YEETD: true
9193
SKIP_SWIFT_BOOTSTRAP: true
92-
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181
93-
XCODE_VERSION: "16.4" # TODO: IOS-1181
9494
- name: Run UI Tests (Debug)
9595
run: bundle exec fastlane test_swiftui device:"${{ env.IOS_SIMULATOR_DEVICE }}" record:"${{ github.event.inputs.record_snapshots_swiftui }}"
9696
timeout-minutes: 120
@@ -251,6 +251,8 @@ jobs:
251251
env:
252252
LAUNCH_ID: ${{ needs.allure_testops_launch.outputs.launch_id }}
253253
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }}
254+
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181
255+
XCODE_VERSION: "16.4" # TODO: IOS-1181
254256
strategy:
255257
matrix:
256258
batch: [0]
@@ -267,8 +269,6 @@ jobs:
267269
INSTALL_VIDEO_BUDDY: true
268270
INSTALL_YEETD: true
269271
SKIP_SWIFT_BOOTSTRAP: true
270-
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" # TODO: IOS-1181
271-
XCODE_VERSION: "16.4" # TODO: IOS-1181
272272
- name: Run UI Tests (Debug)
273273
run: bundle exec fastlane test_e2e device:"${{ env.IOS_SIMULATOR_DEVICE }}" batch:'${{ matrix.batch }}' test_without_building:true
274274
timeout-minutes: 60

0 commit comments

Comments
 (0)