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 8
8
pull_request :
9
9
workflow_dispatch :
10
10
jobs :
11
- e2e-tests :
11
+ e2e :
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
26
26
with :
27
27
name : e2e-test-output-${{ (github.event.pull_request.head.sha || github.sha) }}-${{ github.run_id }}-${{ matrix.parallel-id }}
28
28
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