File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -195,12 +195,14 @@ jobs:
195
195
if [[ "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
196
196
# at 3am PST/4am PDT. Running firestore desktop integration test aginst tip-of-tree ios repo
197
197
matrix_platform="Desktop"
198
+ matrix_os=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k os -o "ubuntu-20.04,macos-12")
198
199
else
199
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} )
201
+ matrix_os=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k os -o "${{github.event.inputs.operating_systems}}")
200
202
fi
201
203
echo "apis=${apis}" >> $GITHUB_OUTPUT
202
204
echo "matrix_platform=${matrix_platform}" >> $GITHUB_OUTPUT
203
- echo "matrix_os=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k os -o "${{github.event.inputs.operating_systems}}") " >> $GITHUB_OUTPUT
205
+ echo "matrix_os=${matrix_os} " >> $GITHUB_OUTPUT
204
206
echo "matrix_arch_macos=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_macos)" >> $GITHUB_OUTPUT
205
207
echo "matrix_arch_windows_linux=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_windows_linux)" >> $GITHUB_OUTPUT
206
208
# Combine architecture_macos and architecture_windows_linux to get a list of all architectures for the build matrix.
You can’t perform that action at this time.
0 commit comments