@@ -184,17 +184,17 @@ jobs:
184
184
# To feed input into the job matrix, we first need to convert to a JSON
185
185
# list. Then we can use fromJson to define the field in the matrix for the tests job.
186
186
if [[ "${{ github.event.schedule }}" == "0 9 * * *" ]]; then
187
- # at 1am PST/ 2am PDT. Running integration tests and generate test report for all testapps except firestore
187
+ # at 1am PST / 2am PDT. Run integration tests and generate test report for all testapps except firestore
188
188
apis="admob,analytics,auth,database,dynamic_links,functions,gma,installations,messaging,remote_config,storage"
189
189
elif [[ "${{ github.event.schedule }}" == "0 10 * * *" || "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
190
- # at 2am PST/ 3am PDT and 3am PST/ 4am PDT. Running integration tests for firestore and generate test report.
190
+ # at 2am PST / 3am PDT and 3am PST / 4am PDT. Run integration tests for firestore and generate test report.
191
191
apis="firestore"
192
192
else
193
193
apis=$( python scripts/gha/print_matrix_configuration.py -c -w integration_tests -k apis -o "${{github.event.inputs.apis}}" ${TEST_MATRIX_PARAM} )
194
194
fi
195
195
if [[ "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
196
- # at 3am PST/ 4am PDT. Running firestore desktop integration test aginst tip-of-tree ios repo
197
- matrix_platform="Desktop"
196
+ # at 3am PST / 4am PDT. Run firestore desktop integration test aginst tip-of-tree ios repo
197
+ matrix_platform=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k platform -o "Desktop" --apis ${apis} )
198
198
matrix_os=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k os -o "ubuntu-20.04,macos-12")
199
199
else
200
200
matrix_platform=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k platform -o "${{github.event.inputs.platforms}}" --apis ${apis} )
@@ -328,7 +328,7 @@ jobs:
328
328
fi
329
329
fi
330
330
if [[ "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
331
- # at 3am PST/ 4am PDT. Running firestore desktop integration test aginst tip-of-tree ios repo
331
+ # at 3am PST / 4am PDT. Run firestore desktop integration test aginst tip-of-tree ios repo
332
332
additional_flags+=(--cmake_flag=-DFIRESTORE_DEP_SOURCE=TIP)
333
333
fi
334
334
python scripts/gha/build_testapps.py --p Desktop \
@@ -1375,7 +1375,7 @@ jobs:
1375
1375
additional_flags=(--build_against sdk)
1376
1376
else
1377
1377
if [[ "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
1378
- # at 3am PST/ 4am PDT. Running firestore desktop integration test aginst tip-of-tree ios repo
1378
+ # at 3am PST / 4am PDT. Run firestore desktop integration test aginst tip-of-tree ios repo
1379
1379
additional_flags=(--build_against tip)
1380
1380
else
1381
1381
additional_flags=(--build_against repo)
0 commit comments