@@ -119,7 +119,8 @@ jobs:
119
119
dockerfile : ./ci/linux-debian.Dockerfile
120
120
tag : x64-debian-image
121
121
122
- - name : Print logs
122
+ - &print-logs
123
+ name : Print logs
123
124
uses : ./.github/actions/print-logs
124
125
if : ${{ !cancelled() }}
125
126
@@ -154,9 +155,7 @@ jobs:
154
155
dockerfile : ./ci/linux-debian.Dockerfile
155
156
tag : x64-debian-image
156
157
157
- - name : Print logs
158
- uses : ./.github/actions/print-logs
159
- if : ${{ !cancelled() }}
158
+ - *print-logs
160
159
161
160
s390x_debian :
162
161
name : " s390x (big-endian): Linux (Debian stable, QEMU)"
@@ -185,10 +184,7 @@ jobs:
185
184
dockerfile : ./ci/linux-debian.Dockerfile
186
185
tag : x64-debian-image
187
186
188
- - name : Print logs
189
- uses : ./.github/actions/print-logs
190
- if : ${{ !cancelled() }}
191
-
187
+ - *print-logs
192
188
193
189
arm32_debian :
194
190
name : " ARM32: Linux (Debian stable, QEMU)"
@@ -225,9 +221,7 @@ jobs:
225
221
dockerfile : ./ci/linux-debian.Dockerfile
226
222
tag : x64-debian-image
227
223
228
- - name : Print logs
229
- uses : ./.github/actions/print-logs
230
- if : ${{ !cancelled() }}
224
+ - *print-logs
231
225
232
226
arm64-debian :
233
227
name : " arm64: Linux (Debian stable)"
@@ -264,9 +258,7 @@ jobs:
264
258
dockerfile : ./ci/linux-debian.Dockerfile
265
259
tag : arm64-debian-image
266
260
267
- - name : Print logs
268
- uses : ./.github/actions/print-logs
269
- if : ${{ !cancelled() }}
261
+ - *print-logs
270
262
271
263
ppc64le_debian :
272
264
name : " ppc64le: Linux (Debian stable, QEMU)"
@@ -295,10 +287,7 @@ jobs:
295
287
dockerfile : ./ci/linux-debian.Dockerfile
296
288
tag : x64-debian-image
297
289
298
- - name : Print logs
299
- uses : ./.github/actions/print-logs
300
- if : ${{ !cancelled() }}
301
-
290
+ - *print-logs
302
291
303
292
valgrind_debian :
304
293
name : " Valgrind ${{ matrix.binary_arch }} (memcheck)"
@@ -357,9 +346,7 @@ jobs:
357
346
dockerfile : ./ci/linux-debian.Dockerfile
358
347
tag : ${{ matrix.docker_arch }}-debian-image
359
348
360
- - name : Print logs
361
- uses : ./.github/actions/print-logs
362
- if : ${{ !cancelled() }}
349
+ - *print-logs
363
350
364
351
sanitizers_debian :
365
352
name : " UBSan, ASan, LSan"
@@ -400,9 +387,7 @@ jobs:
400
387
dockerfile : ./ci/linux-debian.Dockerfile
401
388
tag : x64-debian-image
402
389
403
- - name : Print logs
404
- uses : ./.github/actions/print-logs
405
- if : ${{ !cancelled() }}
390
+ - *print-logs
406
391
407
392
msan_debian :
408
393
name : " MSan"
@@ -450,10 +435,7 @@ jobs:
450
435
dockerfile : ./ci/linux-debian.Dockerfile
451
436
tag : x64-debian-image
452
437
453
- - name : Print logs
454
- uses : ./.github/actions/print-logs
455
- if : ${{ !cancelled() }}
456
-
438
+ - *print-logs
457
439
458
440
mingw_debian :
459
441
name : ${{ matrix.configuration.job_name }}
@@ -492,9 +474,7 @@ jobs:
492
474
dockerfile : ./ci/linux-debian.Dockerfile
493
475
tag : x64-debian-image
494
476
495
- - name : Print logs
496
- uses : ./.github/actions/print-logs
497
- if : ${{ !cancelled() }}
477
+ - *print-logs
498
478
499
479
x86_64-macos-native :
500
480
name : " x86_64: macOS Ventura, Valgrind"
@@ -543,9 +523,7 @@ jobs:
543
523
python3 -m pip install lief
544
524
python3 ./tools/symbol-check.py .libs/libsecp256k1.dylib
545
525
546
- - name : Print logs
547
- uses : ./.github/actions/print-logs
548
- if : ${{ !cancelled() }}
526
+ - *print-logs
549
527
550
528
arm64-macos-native :
551
529
name : " ARM64: macOS Sonoma"
@@ -595,10 +573,7 @@ jobs:
595
573
python3 -m pip install lief
596
574
python3 ./tools/symbol-check.py .libs/libsecp256k1.dylib
597
575
598
- - name : Print logs
599
- uses : ./.github/actions/print-logs
600
- if : ${{ !cancelled() }}
601
-
576
+ - *print-logs
602
577
603
578
win64-native :
604
579
name : ${{ matrix.configuration.job_name }}
@@ -695,9 +670,7 @@ jobs:
695
670
dockerfile : ./ci/linux-debian.Dockerfile
696
671
tag : x64-debian-image
697
672
698
- - name : Print logs
699
- uses : ./.github/actions/print-logs
700
- if : ${{ !cancelled() }}
673
+ - *print-logs
701
674
702
675
cxx_headers_debian :
703
676
name : " C++ (public headers)"
0 commit comments