File tree Expand file tree Collapse file tree 5 files changed +60
-0
lines changed Expand file tree Collapse file tree 5 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -197,3 +197,15 @@ jobs:
197
197
fail_ci_if_error : true
198
198
token : ${{ secrets.CODECOV_TOKEN }}
199
199
if : ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
200
+
201
+ completion-ci :
202
+ needs : build
203
+ runs-on : ubuntu-latest
204
+ if : always() # Run even if one matrix job fails
205
+ steps :
206
+ - name : Check matrix job status
207
+ run : |-
208
+ if ! ${{ needs.build.result == 'success' }}; then
209
+ echo "One or more matrix jobs failed"
210
+ exit 1
211
+ fi
Original file line number Diff line number Diff line change 47
47
target : ${{ matrix.image.name }}
48
48
tags : |-
49
49
adamtheturtle/vuforia-${{ matrix.image.name }}-mock:latest
50
+
51
+ completion-docker :
52
+ needs : build
53
+ runs-on : ubuntu-latest
54
+ if : always() # Run even if one matrix job fails
55
+ steps :
56
+ - name : Check matrix job status
57
+ run : |-
58
+ if ! ${{ needs.build.result == 'success' }}; then
59
+ echo "One or more matrix jobs failed"
60
+ exit 1
61
+ fi
Original file line number Diff line number Diff line change 42
42
43
43
- uses : pre-commit-ci/lite-action@v1.1.0
44
44
if : always()
45
+
46
+ completion-lint :
47
+ needs : build
48
+ runs-on : ubuntu-latest
49
+ if : always() # Run even if one matrix job fails
50
+ steps :
51
+ - name : Check matrix job status
52
+ run : |-
53
+ if ! ${{ needs.build.result == 'success' }}; then
54
+ echo "One or more matrix jobs failed"
55
+ exit 1
56
+ fi
Original file line number Diff line number Diff line change 87
87
# which tells us to use the token to avoid errors.
88
88
token : ${{ secrets.CODECOV_TOKEN }}
89
89
if : ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
90
+
91
+ completion-skip-tests :
92
+ needs : build
93
+ runs-on : ubuntu-latest
94
+ if : always() # Run even if one matrix job fails
95
+ steps :
96
+ - name : Check matrix job status
97
+ run : |-
98
+ if ! ${{ needs.build.result == 'success' }}; then
99
+ echo "One or more matrix jobs failed"
100
+ exit 1
101
+ fi
Original file line number Diff line number Diff line change 76
76
# which tells us to use the token to avoid errors.
77
77
token : ${{ secrets.CODECOV_TOKEN }}
78
78
if : ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
79
+
80
+ completion-windows-ci :
81
+ needs : build
82
+ runs-on : ubuntu-latest
83
+ if : always() # Run even if one matrix job fails
84
+ steps :
85
+ - name : Check matrix job status
86
+ run : |-
87
+ if ! ${{ needs.build.result == 'success' }}; then
88
+ echo "One or more matrix jobs failed"
89
+ exit 1
90
+ fi
You can’t perform that action at this time.
0 commit comments