Skip to content

Commit 6c00fb0

Browse files
committed
disable windows desktop test when test against ios main branch
1 parent 6a3f513 commit 6c00fb0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,14 @@ jobs:
195195
if [[ "${{ github.event.schedule }}" == "0 11 * * *" ]]; then
196196
# at 3am PST/4am PDT. Running firestore desktop integration test aginst tip-of-tree ios repo
197197
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")
198199
else
199200
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}}")
200202
fi
201203
echo "apis=${apis}" >> $GITHUB_OUTPUT
202204
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
204206
echo "matrix_arch_macos=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_macos)" >> $GITHUB_OUTPUT
205207
echo "matrix_arch_windows_linux=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_windows_linux)" >> $GITHUB_OUTPUT
206208
# Combine architecture_macos and architecture_windows_linux to get a list of all architectures for the build matrix.

0 commit comments

Comments
 (0)