File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 88 pull_request :
99 workflow_dispatch :
1010jobs :
11- e2e-tests :
11+ e2e :
1212 strategy :
1313 fail-fast : false
1414 matrix :
2626 with :
2727 name : e2e-test-output-${{ (github.event.pull_request.head.sha || github.sha) }}-${{ github.run_id }}-${{ matrix.parallel-id }}
2828 path : ${{ github.workspace }}/bin/artifacts/*
29- # TODO: create job to combine test artifacts using code in https://github.com/operator-framework/operator-lifecycle-manager/pull/1476
29+ # TODO: create job to combine test artifacts using code in https://github.com/operator-framework/operator-lifecycle-manager/pull/1476
30+ e2e-tests :
31+ if : ${{ always() }}
32+ runs-on : ubuntu-latest
33+ needs : e2e
34+ steps :
35+ - run : |
36+ echo "Matrix result: ${{ needs.e2e.result }}"
37+ - name : check individual matrix results
38+ if : ${{ needs.e2e.result == 'failure' }}
39+ run : |
40+ echo 'Failure: at least one e2e matrix job has failed'
41+ exit 1
You can’t perform that action at this time.
0 commit comments