Skip to content

Commit 949fe13

Browse files
authored
fishing to see if testing explicitly for success will work for matrixed tests with fail-fast:false (#3752)
Signed-off-by: grokspawn <jordan@nimblewidget.com>
1 parent 3e24482 commit 949fe13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ jobs:
117117
- run: |
118118
echo "Matrix result: ${{ needs.e2e.result }}"
119119
- name: check individual matrix results
120-
if: ${{ needs.e2e.result == 'failure' }}
120+
if: ${{ needs.e2e.result != 'success' }}
121121
run: |
122-
echo 'Failure: at least one e2e matrix job has failed'
122+
echo 'Failure: at least one e2e matrix job has failed or been cancelled'
123123
exit 1
124124
125125
# Run e2e tests in parallel jobs

0 commit comments

Comments
 (0)