@@ -119,6 +119,10 @@ jobs:
119
119
- name : test
120
120
shell : bash
121
121
run : . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
122
+ - name : print test failures
123
+ if : failure() && env.FAILED_TEST_ARTIFACTS != ''
124
+ shell : bash
125
+ run : ci/print-test-failures.sh
122
126
- name : Upload failed tests' directories
123
127
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
124
128
uses : actions/upload-artifact@v2
@@ -200,6 +204,10 @@ jobs:
200
204
env :
201
205
NO_SVN_TESTS : 1
202
206
run : . /etc/profile && ci/run-test-slice.sh ${{matrix.nr}} 10
207
+ - name : print test failures
208
+ if : failure() && env.FAILED_TEST_ARTIFACTS != ''
209
+ shell : bash
210
+ run : ci/print-test-failures.sh
203
211
- name : Upload failed tests' directories
204
212
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
205
213
uses : actions/upload-artifact@v2
@@ -253,6 +261,10 @@ jobs:
253
261
- uses : actions/checkout@v2
254
262
- run : ci/install-dependencies.sh
255
263
- run : ci/run-build-and-tests.sh
264
+ - name : print test failures
265
+ if : failure() && env.FAILED_TEST_ARTIFACTS != ''
266
+ shell : bash
267
+ run : ci/print-test-failures.sh
256
268
- name : Upload failed tests' directories
257
269
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
258
270
uses : actions/upload-artifact@v2
@@ -282,6 +294,10 @@ jobs:
282
294
- uses : actions/checkout@v1
283
295
- run : ci/install-docker-dependencies.sh
284
296
- run : ci/run-build-and-tests.sh
297
+ - name : print test failures
298
+ if : failure() && env.FAILED_TEST_ARTIFACTS != ''
299
+ shell : bash
300
+ run : ci/print-test-failures.sh
285
301
- name : Upload failed tests' directories
286
302
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
287
303
uses : actions/upload-artifact@v1
0 commit comments