@@ -221,88 +221,3 @@ jobs:
221
221
with :
222
222
name : failed-tests-windows
223
223
path : ${{env.FAILED_TEST_ARTIFACTS}}
224
- regular :
225
- needs : ci-config
226
- if : needs.ci-config.outputs.enabled == 'yes'
227
- strategy :
228
- fail-fast : false
229
- matrix :
230
- vector :
231
- - jobname : linux-clang
232
- cc : clang
233
- pool : ubuntu-latest
234
- - jobname : linux-gcc
235
- cc : gcc
236
- pool : ubuntu-latest
237
- - jobname : osx-clang
238
- cc : clang
239
- pool : macos-latest
240
- - jobname : osx-gcc
241
- cc : gcc
242
- pool : macos-latest
243
- - jobname : GETTEXT_POISON
244
- cc : gcc
245
- pool : ubuntu-latest
246
- env :
247
- CC : ${{matrix.vector.cc}}
248
- jobname : ${{matrix.vector.jobname}}
249
- runs-on : ${{matrix.vector.pool}}
250
- steps :
251
- - uses : actions/checkout@v2
252
- - run : ci/install-dependencies.sh
253
- - run : ci/run-build-and-tests.sh
254
- - run : ci/print-test-failures.sh
255
- if : failure()
256
- - name : Upload failed tests' directories
257
- if : failure() && env.FAILED_TEST_ARTIFACTS != ''
258
- uses : actions/upload-artifact@v2
259
- with :
260
- name : failed-tests-${{matrix.vector.jobname}}
261
- path : ${{env.FAILED_TEST_ARTIFACTS}}
262
- dockerized :
263
- needs : ci-config
264
- if : needs.ci-config.outputs.enabled == 'yes'
265
- strategy :
266
- fail-fast : false
267
- matrix :
268
- vector :
269
- - jobname : linux-musl
270
- image : alpine
271
- - jobname : Linux32
272
- image : daald/ubuntu32:xenial
273
- env :
274
- jobname : ${{matrix.vector.jobname}}
275
- runs-on : ubuntu-latest
276
- container : ${{matrix.vector.image}}
277
- steps :
278
- - uses : actions/checkout@v1
279
- - run : ci/install-docker-dependencies.sh
280
- - run : ci/run-build-and-tests.sh
281
- - run : ci/print-test-failures.sh
282
- if : failure()
283
- - name : Upload failed tests' directories
284
- if : failure() && env.FAILED_TEST_ARTIFACTS != ''
285
- uses : actions/upload-artifact@v2
286
- with :
287
- name : failed-tests-${{matrix.vector.jobname}}
288
- path : ${{env.FAILED_TEST_ARTIFACTS}}
289
- static-analysis :
290
- needs : ci-config
291
- if : needs.ci-config.outputs.enabled == 'yes'
292
- env :
293
- jobname : StaticAnalysis
294
- runs-on : ubuntu-latest
295
- steps :
296
- - uses : actions/checkout@v2
297
- - run : ci/install-dependencies.sh
298
- - run : ci/run-static-analysis.sh
299
- documentation :
300
- needs : ci-config
301
- if : needs.ci-config.outputs.enabled == 'yes'
302
- env :
303
- jobname : Documentation
304
- runs-on : ubuntu-latest
305
- steps :
306
- - uses : actions/checkout@v2
307
- - run : ci/install-dependencies.sh
308
- - run : ci/test-documentation.sh
0 commit comments