38
38
description : Run firebase tests
39
39
type : boolean
40
40
required : false
41
+ mockapi_test_repeat :
42
+ description : Mockapi test repeat
43
+ default : ' 1'
44
+ required : true
45
+ type : string
41
46
# Build if main is updated to ensure up-to-date caches are available
42
47
push :
43
48
branches : [main]
@@ -396,11 +401,14 @@ jobs:
396
401
include :
397
402
- test-type : app
398
403
path : android/app/build/outputs/apk
399
- # Disabled due to flakiness.
400
- # - test-type: mockapi
401
- # path: android/test/mockapi/build/outputs/apk
404
+ test-repeat : 1
405
+ # Disabled (test-repeat='0') due to flakiness unless overridden by input.
406
+ - test-type : mockapi
407
+ path : android/test/mockapi/build/outputs/apk
408
+ test-repeat : ${{ github.event.inputs.mockapi_test_repeat || 0 }}
402
409
steps :
403
410
- name : Prepare report dir
411
+ if : ${{ matrix.test-repeat != 0 }}
404
412
id : prepare-report-dir
405
413
env :
406
414
INNER_REPORT_DIR : /tmp/${{ matrix.test-type }}-${{ github.run_id }}-${{ github.run_attempt }}
@@ -409,33 +417,37 @@ jobs:
409
417
echo "report_dir=$INNER_REPORT_DIR" >> $GITHUB_OUTPUT
410
418
411
419
- name : Checkout repository
420
+ if : ${{ matrix.test-repeat != 0 }}
412
421
uses : actions/checkout@v4
413
422
414
423
# Using v3 due to v4 being very slow for this artifact.
415
424
- uses : actions/download-artifact@v3
425
+ if : ${{ matrix.test-repeat != 0 }}
416
426
with :
417
427
name : apks
418
428
path : android/app/build/outputs/apk
419
429
420
430
# Using v3 due to v4 being very slow for this artifact.
421
431
- uses : actions/download-artifact@v3
432
+ if : ${{ matrix.test-repeat != 0 }}
422
433
with :
423
434
name : ${{ matrix.test-type }}-instrumentation-apks
424
435
path : ${{ matrix.path }}
425
436
426
437
- name : Run instrumented test script
438
+ if : ${{ matrix.test-repeat != 0 }}
427
439
shell : bash -ieo pipefail {0}
428
440
env :
429
441
AUTO_FETCH_TEST_HELPER_APKS : true
430
442
TEST_TYPE : ${{ matrix.test-type }}
431
443
BILLING_FLAVOR : oss
432
444
INFRA_FLAVOR : prod
433
445
REPORT_DIR : ${{ steps.prepare-report-dir.outputs.report_dir }}
434
- run : ./android/scripts/run-instrumented-tests.sh
446
+ run : ./android/scripts/run-instrumented-tests-repeat .sh ${{ matrix.test-repeat }}
435
447
436
448
- name : Upload instrumentation report (${{ matrix.test-type }})
437
449
uses : actions/upload-artifact@v4
438
- if : always()
450
+ if : ${{ matrix.test-repeat != 0 }}
439
451
with :
440
452
name : ${{ matrix.test-type }}-instrumentation-report
441
453
path : ${{ steps.prepare-report-dir.outputs.report_dir }}
0 commit comments