@@ -196,7 +196,6 @@ jobs:
196196 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
197197 echo "matrix_arch_macos=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_macos)" >> $GITHUB_OUTPUT
198198 echo "matrix_arch_windows_linux=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_windows_linux)" >> $GITHUB_OUTPUT
199-
200199 # Combine architecture_macos and architecture_windows_linux to get a list of all architectures for the build matrix.
201200 matrix_arch_combined=`echo $( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_macos | sed 's/[]\[,]//g') \
202201 $( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k architecture_windows_linux | sed 's/[]\[,]//g' ) \
@@ -219,7 +218,6 @@ jobs:
219218 echo "xcode_version=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k xcode_version)" >> $GITHUB_OUTPUT
220219 echo "ios_device=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k ios_device -t ${mobile_test_on} )" >> $GITHUB_OUTPUT
221220 echo "tvos_device=$( python scripts/gha/print_matrix_configuration.py -w integration_tests ${TEST_MATRIX_PARAM} -k tvos_device -t ${mobile_test_on} )" >> $GITHUB_OUTPUT
222-
223221 - name : Update PR label and comment
224222 if : steps.set_outputs.outputs.pr_number
225223 shell : bash
@@ -1043,7 +1041,7 @@ jobs:
10431041 max_attempts : 3
10441042 validator : ${GITHUB_WORKSPACE}/scripts/gha/integration_testing/ftl_gha_validator.py
10451043 - name : Read FTL Test Result
1046- if : steps.device-info.outputs.device_type == 'real'
1044+ if : ${{ steps.device-info.outputs.device_type == 'real' && !cancelled() }}
10471045 shell : bash
10481046 run : |
10491047 python scripts/gha/read_ftl_test_result.py --test_result '${{ steps.ftl_test.outputs.test_summary }}' \
@@ -1186,7 +1184,7 @@ jobs:
11861184 max_attempts : 3
11871185 validator : ${GITHUB_WORKSPACE}/scripts/gha/integration_testing/ftl_gha_validator.py
11881186 - name : Read FTL Test Result
1189- if : steps.device-info.outputs.device_type == 'real'
1187+ if : ${{ steps.device-info.outputs.device_type == 'real' && !cancelled() }}
11901188 shell : bash
11911189 run : |
11921190 python scripts/gha/read_ftl_test_result.py --test_result '${{ steps.ftl_test.outputs.test_summary }}' \
0 commit comments