@@ -108,7 +108,8 @@ jobs:
108
108
CC : ${{ matrix.cc }}
109
109
110
110
steps :
111
- - name : Checkout
111
+ - &checkout
112
+ name : Checkout
112
113
uses : actions/checkout@v4
113
114
114
115
- name : CI script
@@ -145,8 +146,7 @@ jobs:
145
146
CC : ${{ matrix.cc }}
146
147
147
148
steps :
148
- - name : Checkout
149
- uses : actions/checkout@v4
149
+ - *checkout
150
150
151
151
- name : CI script
152
152
uses : ./.github/actions/run-in-docker-action
@@ -177,8 +177,7 @@ jobs:
177
177
CTIMETESTS : ' no'
178
178
179
179
steps :
180
- - name : Checkout
181
- uses : actions/checkout@v4
180
+ - *checkout
182
181
183
182
- name : CI script
184
183
uses : ./.github/actions/run-in-docker-action
@@ -217,8 +216,7 @@ jobs:
217
216
CTIMETESTS : ' no'
218
217
219
218
steps :
220
- - name : Checkout
221
- uses : actions/checkout@v4
219
+ - *checkout
222
220
223
221
- name : CI script
224
222
env : ${{ matrix.configuration.env_vars }}
@@ -258,8 +256,7 @@ jobs:
258
256
- ' clang-snapshot'
259
257
260
258
steps :
261
- - name : Checkout
262
- uses : actions/checkout@v4
259
+ - *checkout
263
260
264
261
- name : CI script
265
262
uses : ./.github/actions/run-in-docker-action
@@ -290,8 +287,7 @@ jobs:
290
287
CTIMETESTS : ' no'
291
288
292
289
steps :
293
- - name : Checkout
294
- uses : actions/checkout@v4
290
+ - *checkout
295
291
296
292
- name : CI script
297
293
uses : ./.github/actions/run-in-docker-action
@@ -352,8 +348,7 @@ jobs:
352
348
SECP256K1_TEST_ITERS : 2
353
349
354
350
steps :
355
- - name : Checkout
356
- uses : actions/checkout@v4
351
+ - *checkout
357
352
358
353
- name : CI script
359
354
env : ${{ matrix.env_vars }}
@@ -396,8 +391,7 @@ jobs:
396
391
SYMBOL_CHECK : ' no'
397
392
398
393
steps :
399
- - name : Checkout
400
- uses : actions/checkout@v4
394
+ - *checkout
401
395
402
396
- name : CI script
403
397
env : ${{ matrix.configuration.env_vars }}
@@ -447,8 +441,7 @@ jobs:
447
441
SYMBOL_CHECK : ' no'
448
442
449
443
steps :
450
- - name : Checkout
451
- uses : actions/checkout@v4
444
+ - *checkout
452
445
453
446
- name : CI script
454
447
env : ${{ matrix.configuration.env_vars }}
@@ -490,8 +483,7 @@ jobs:
490
483
HOST : ' i686-w64-mingw32'
491
484
492
485
steps :
493
- - name : Checkout
494
- uses : actions/checkout@v4
486
+ - *checkout
495
487
496
488
- name : CI script
497
489
env : ${{ matrix.configuration.env_vars }}
@@ -531,8 +523,7 @@ jobs:
531
523
- BUILD : ' distcheck'
532
524
533
525
steps :
534
- - name : Checkout
535
- uses : actions/checkout@v4
526
+ - *checkout
536
527
537
528
- name : Install Homebrew packages
538
529
run : |
@@ -583,8 +574,7 @@ jobs:
583
574
- BUILD : ' distcheck'
584
575
585
576
steps :
586
- - name : Checkout
587
- uses : actions/checkout@v4
577
+ - *checkout
588
578
589
579
- name : Install Homebrew packages
590
580
run : |
@@ -635,8 +625,7 @@ jobs:
635
625
cmake_options : ' -T ClangCL'
636
626
637
627
steps :
638
- - name : Checkout
639
- uses : actions/checkout@v4
628
+ - *checkout
640
629
641
630
- name : Generate buildsystem
642
631
run : cmake -E env CFLAGS="/WX ${{ matrix.configuration.cpp_flags }}" cmake -B build -DSECP256K1_ENABLE_MODULE_RECOVERY=ON -DSECP256K1_BUILD_EXAMPLES=ON ${{ matrix.configuration.cmake_options }}
@@ -671,8 +660,7 @@ jobs:
671
660
runs-on : windows-2022
672
661
673
662
steps :
674
- - name : Checkout
675
- uses : actions/checkout@v4
663
+ - *checkout
676
664
677
665
- name : Add cl.exe to PATH
678
666
uses : ilammy/msvc-dev-cmd@v1
@@ -699,8 +687,7 @@ jobs:
699
687
ELLSWIFT : ' yes'
700
688
701
689
steps :
702
- - name : Checkout
703
- uses : actions/checkout@v4
690
+ - *checkout
704
691
705
692
- name : CI script
706
693
uses : ./.github/actions/run-in-docker-action
@@ -718,8 +705,7 @@ jobs:
718
705
needs : docker_cache
719
706
720
707
steps :
721
- - name : Checkout
722
- uses : actions/checkout@v4
708
+ - *checkout
723
709
724
710
- name : CI script
725
711
uses : ./.github/actions/run-in-docker-action
@@ -738,8 +724,7 @@ jobs:
738
724
options : --user root
739
725
740
726
steps :
741
- - name : Checkout
742
- uses : actions/checkout@v4
727
+ - *checkout
743
728
744
729
- name : CI script
745
730
run : |
@@ -750,8 +735,7 @@ jobs:
750
735
runs-on : ubuntu-latest
751
736
752
737
steps :
753
- - name : Checkout
754
- uses : actions/checkout@v4
738
+ - *checkout
755
739
756
740
- run : ./autogen.sh && ./configure --enable-dev-mode && make distcheck
757
741
0 commit comments