File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments