Skip to content

Commit 0c8c8b2

Browse files
authored
disable test on simulator
1 parent c74dc47 commit 0c8c8b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ jobs:
344344
run: |
345345
python scripts/gha/desktop_tester.py --testapp_dir ta
346346
- name: Run iOS integration tests on Simulator locally
347-
if: matrix.target_platform == 'iOS' && !cancelled()
347+
if: contains(env.mobileTestOn, 'simulator') && matrix.target_platform == 'iOS' && !cancelled()
348348
run: |
349349
python scripts/gha/test_simulator.py --testapp_dir ta
350350
# Workaround for https://github.com/GoogleCloudPlatform/github-actions/issues/100
@@ -361,7 +361,7 @@ jobs:
361361
run: |
362362
python scripts/gha/gcs_uploader.py --testapp_dir ta --key_file scripts/gha-encrypted/gcs_key_file.json
363363
- name: Run mobile integration tests on Real Device via FTL
364-
if: matrix.target_platform != 'Desktop' && !cancelled()
364+
if: contains(env.mobileTestOn, 'device') && matrix.target_platform != 'Desktop' && !cancelled()
365365
run: |
366366
python scripts/gha/test_lab.py --android_model ${{ needs.prepare_matrix.outputs.android_device }} --android_api ${{ needs.prepare_matrix.outputs.android_api }} --ios_model ${{ needs.prepare_matrix.outputs.ios_device }} --ios_version ${{ needs.prepare_matrix.outputs.ios_version }} --testapp_dir ta --code_platform cpp --key_file scripts/gha-encrypted/gcs_key_file.json
367367
- name: Prepare results summary artifact

0 commit comments

Comments
 (0)