@@ -51,10 +51,12 @@ jobs:
51
51
os : ubuntu-latest-xl
52
52
timeout-minutes : 600
53
53
runs-on : " ${{ matrix.os }}"
54
+ defaults :
55
+ run :
56
+ shell : bash
54
57
steps :
55
58
- name : disable git crlf conversion
56
59
run : git config --global core.autocrlf false
57
- shell : bash
58
60
- name : checkout the source code
59
61
uses : actions/checkout@v1
60
62
with :
@@ -66,85 +68,66 @@ jobs:
66
68
if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
67
69
- name : add extra environment variables
68
70
run : src/ci/scripts/setup-environment.sh
69
- shell : bash
70
71
env :
71
72
EXTRA_VARIABLES : " ${{ toJson(matrix.env) }}"
72
73
if : success() && !env.SKIP_JOB
73
74
- name : decide whether to skip this job
74
75
run : src/ci/scripts/should-skip-this.sh
75
- shell : bash
76
76
if : success() && !env.SKIP_JOB
77
77
- name : collect CPU statistics
78
78
run : src/ci/scripts/collect-cpu-stats.sh
79
- shell : bash
80
79
if : success() && !env.SKIP_JOB
81
80
- name : show the current environment
82
81
run : src/ci/scripts/dump-environment.sh
83
- shell : bash
84
82
if : success() && !env.SKIP_JOB
85
83
- name : install awscli
86
84
run : src/ci/scripts/install-awscli.sh
87
- shell : bash
88
85
if : success() && !env.SKIP_JOB
89
86
- name : install sccache
90
87
run : src/ci/scripts/install-sccache.sh
91
- shell : bash
92
88
if : success() && !env.SKIP_JOB
93
89
- name : install clang
94
90
run : src/ci/scripts/install-clang.sh
95
- shell : bash
96
91
if : success() && !env.SKIP_JOB
97
92
- name : install WIX
98
93
run : src/ci/scripts/install-wix.sh
99
- shell : bash
100
94
if : success() && !env.SKIP_JOB
101
95
- name : ensure the build happens on a partition with enough space
102
96
run : src/ci/scripts/symlink-build-dir.sh
103
- shell : bash
104
97
if : success() && !env.SKIP_JOB
105
98
- name : disable git crlf conversion
106
99
run : src/ci/scripts/disable-git-crlf-conversion.sh
107
- shell : bash
108
100
if : success() && !env.SKIP_JOB
109
101
- name : install MSYS2
110
102
run : src/ci/scripts/install-msys2.sh
111
- shell : bash
112
103
if : success() && !env.SKIP_JOB
113
104
- name : install MinGW
114
105
run : src/ci/scripts/install-mingw.sh
115
- shell : bash
116
106
if : success() && !env.SKIP_JOB
117
107
- name : install ninja
118
108
run : src/ci/scripts/install-ninja.sh
119
- shell : bash
120
109
if : success() && !env.SKIP_JOB
121
110
- name : enable ipv6 on Docker
122
111
run : src/ci/scripts/enable-docker-ipv6.sh
123
- shell : bash
124
112
if : success() && !env.SKIP_JOB
125
113
- name : disable git crlf conversion
126
114
run : src/ci/scripts/disable-git-crlf-conversion.sh
127
- shell : bash
128
115
if : success() && !env.SKIP_JOB
129
116
- name : checkout submodules
130
117
run : src/ci/scripts/checkout-submodules.sh
131
- shell : bash
132
118
if : success() && !env.SKIP_JOB
133
119
- name : ensure line endings are correct
134
120
run : src/ci/scripts/verify-line-endings.sh
135
- shell : bash
136
121
if : success() && !env.SKIP_JOB
137
122
- name : run the build
138
123
run : src/ci/scripts/run-build-from-ci.sh
139
- shell : bash
140
124
env :
141
125
AWS_ACCESS_KEY_ID : " ${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
142
126
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
143
127
TOOLSTATE_REPO_ACCESS_TOKEN : " ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
144
128
if : success() && !env.SKIP_JOB
145
129
- name : upload artifacts to S3
146
130
run : src/ci/scripts/upload-artifacts.sh
147
- shell : bash
148
131
env :
149
132
AWS_ACCESS_KEY_ID : " ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
150
133
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
@@ -170,10 +153,12 @@ jobs:
170
153
env : {}
171
154
timeout-minutes : 600
172
155
runs-on : " ${{ matrix.os }}"
156
+ defaults :
157
+ run :
158
+ shell : bash
173
159
steps :
174
160
- name : disable git crlf conversion
175
161
run : git config --global core.autocrlf false
176
- shell : bash
177
162
- name : checkout the source code
178
163
uses : actions/checkout@v1
179
164
with :
@@ -185,85 +170,66 @@ jobs:
185
170
if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
186
171
- name : add extra environment variables
187
172
run : src/ci/scripts/setup-environment.sh
188
- shell : bash
189
173
env :
190
174
EXTRA_VARIABLES : " ${{ toJson(matrix.env) }}"
191
175
if : success() && !env.SKIP_JOB
192
176
- name : decide whether to skip this job
193
177
run : src/ci/scripts/should-skip-this.sh
194
- shell : bash
195
178
if : success() && !env.SKIP_JOB
196
179
- name : collect CPU statistics
197
180
run : src/ci/scripts/collect-cpu-stats.sh
198
- shell : bash
199
181
if : success() && !env.SKIP_JOB
200
182
- name : show the current environment
201
183
run : src/ci/scripts/dump-environment.sh
202
- shell : bash
203
184
if : success() && !env.SKIP_JOB
204
185
- name : install awscli
205
186
run : src/ci/scripts/install-awscli.sh
206
- shell : bash
207
187
if : success() && !env.SKIP_JOB
208
188
- name : install sccache
209
189
run : src/ci/scripts/install-sccache.sh
210
- shell : bash
211
190
if : success() && !env.SKIP_JOB
212
191
- name : install clang
213
192
run : src/ci/scripts/install-clang.sh
214
- shell : bash
215
193
if : success() && !env.SKIP_JOB
216
194
- name : install WIX
217
195
run : src/ci/scripts/install-wix.sh
218
- shell : bash
219
196
if : success() && !env.SKIP_JOB
220
197
- name : ensure the build happens on a partition with enough space
221
198
run : src/ci/scripts/symlink-build-dir.sh
222
- shell : bash
223
199
if : success() && !env.SKIP_JOB
224
200
- name : disable git crlf conversion
225
201
run : src/ci/scripts/disable-git-crlf-conversion.sh
226
- shell : bash
227
202
if : success() && !env.SKIP_JOB
228
203
- name : install MSYS2
229
204
run : src/ci/scripts/install-msys2.sh
230
- shell : bash
231
205
if : success() && !env.SKIP_JOB
232
206
- name : install MinGW
233
207
run : src/ci/scripts/install-mingw.sh
234
- shell : bash
235
208
if : success() && !env.SKIP_JOB
236
209
- name : install ninja
237
210
run : src/ci/scripts/install-ninja.sh
238
- shell : bash
239
211
if : success() && !env.SKIP_JOB
240
212
- name : enable ipv6 on Docker
241
213
run : src/ci/scripts/enable-docker-ipv6.sh
242
- shell : bash
243
214
if : success() && !env.SKIP_JOB
244
215
- name : disable git crlf conversion
245
216
run : src/ci/scripts/disable-git-crlf-conversion.sh
246
- shell : bash
247
217
if : success() && !env.SKIP_JOB
248
218
- name : checkout submodules
249
219
run : src/ci/scripts/checkout-submodules.sh
250
- shell : bash
251
220
if : success() && !env.SKIP_JOB
252
221
- name : ensure line endings are correct
253
222
run : src/ci/scripts/verify-line-endings.sh
254
- shell : bash
255
223
if : success() && !env.SKIP_JOB
256
224
- name : run the build
257
225
run : src/ci/scripts/run-build-from-ci.sh
258
- shell : bash
259
226
env :
260
227
AWS_ACCESS_KEY_ID : " ${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
261
228
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
262
229
TOOLSTATE_REPO_ACCESS_TOKEN : " ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
263
230
if : success() && !env.SKIP_JOB
264
231
- name : upload artifacts to S3
265
232
run : src/ci/scripts/upload-artifacts.sh
266
- shell : bash
267
233
env :
268
234
AWS_ACCESS_KEY_ID : " ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
269
235
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
@@ -507,10 +473,12 @@ jobs:
507
473
os : windows-latest-xl
508
474
timeout-minutes : 600
509
475
runs-on : " ${{ matrix.os }}"
476
+ defaults :
477
+ run :
478
+ shell : bash
510
479
steps :
511
480
- name : disable git crlf conversion
512
481
run : git config --global core.autocrlf false
513
- shell : bash
514
482
- name : checkout the source code
515
483
uses : actions/checkout@v1
516
484
with :
@@ -522,85 +490,66 @@ jobs:
522
490
if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
523
491
- name : add extra environment variables
524
492
run : src/ci/scripts/setup-environment.sh
525
- shell : bash
526
493
env :
527
494
EXTRA_VARIABLES : " ${{ toJson(matrix.env) }}"
528
495
if : success() && !env.SKIP_JOB
529
496
- name : decide whether to skip this job
530
497
run : src/ci/scripts/should-skip-this.sh
531
- shell : bash
532
498
if : success() && !env.SKIP_JOB
533
499
- name : collect CPU statistics
534
500
run : src/ci/scripts/collect-cpu-stats.sh
535
- shell : bash
536
501
if : success() && !env.SKIP_JOB
537
502
- name : show the current environment
538
503
run : src/ci/scripts/dump-environment.sh
539
- shell : bash
540
504
if : success() && !env.SKIP_JOB
541
505
- name : install awscli
542
506
run : src/ci/scripts/install-awscli.sh
543
- shell : bash
544
507
if : success() && !env.SKIP_JOB
545
508
- name : install sccache
546
509
run : src/ci/scripts/install-sccache.sh
547
- shell : bash
548
510
if : success() && !env.SKIP_JOB
549
511
- name : install clang
550
512
run : src/ci/scripts/install-clang.sh
551
- shell : bash
552
513
if : success() && !env.SKIP_JOB
553
514
- name : install WIX
554
515
run : src/ci/scripts/install-wix.sh
555
- shell : bash
556
516
if : success() && !env.SKIP_JOB
557
517
- name : ensure the build happens on a partition with enough space
558
518
run : src/ci/scripts/symlink-build-dir.sh
559
- shell : bash
560
519
if : success() && !env.SKIP_JOB
561
520
- name : disable git crlf conversion
562
521
run : src/ci/scripts/disable-git-crlf-conversion.sh
563
- shell : bash
564
522
if : success() && !env.SKIP_JOB
565
523
- name : install MSYS2
566
524
run : src/ci/scripts/install-msys2.sh
567
- shell : bash
568
525
if : success() && !env.SKIP_JOB
569
526
- name : install MinGW
570
527
run : src/ci/scripts/install-mingw.sh
571
- shell : bash
572
528
if : success() && !env.SKIP_JOB
573
529
- name : install ninja
574
530
run : src/ci/scripts/install-ninja.sh
575
- shell : bash
576
531
if : success() && !env.SKIP_JOB
577
532
- name : enable ipv6 on Docker
578
533
run : src/ci/scripts/enable-docker-ipv6.sh
579
- shell : bash
580
534
if : success() && !env.SKIP_JOB
581
535
- name : disable git crlf conversion
582
536
run : src/ci/scripts/disable-git-crlf-conversion.sh
583
- shell : bash
584
537
if : success() && !env.SKIP_JOB
585
538
- name : checkout submodules
586
539
run : src/ci/scripts/checkout-submodules.sh
587
- shell : bash
588
540
if : success() && !env.SKIP_JOB
589
541
- name : ensure line endings are correct
590
542
run : src/ci/scripts/verify-line-endings.sh
591
- shell : bash
592
543
if : success() && !env.SKIP_JOB
593
544
- name : run the build
594
545
run : src/ci/scripts/run-build-from-ci.sh
595
- shell : bash
596
546
env :
597
547
AWS_ACCESS_KEY_ID : " ${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
598
548
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
599
549
TOOLSTATE_REPO_ACCESS_TOKEN : " ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
600
550
if : success() && !env.SKIP_JOB
601
551
- name : upload artifacts to S3
602
552
run : src/ci/scripts/upload-artifacts.sh
603
- shell : bash
604
553
env :
605
554
AWS_ACCESS_KEY_ID : " ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
606
555
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
@@ -652,10 +601,12 @@ jobs:
652
601
os : macos-latest
653
602
timeout-minutes : 600
654
603
runs-on : " ${{ matrix.os }}"
604
+ defaults :
605
+ run :
606
+ shell : bash
655
607
steps :
656
608
- name : disable git crlf conversion
657
609
run : git config --global core.autocrlf false
658
- shell : bash
659
610
- name : checkout the source code
660
611
uses : actions/checkout@v1
661
612
with :
@@ -667,85 +618,66 @@ jobs:
667
618
if : " success() && !env.SKIP_JOB && github.ref != 'refs/heads/try'"
668
619
- name : add extra environment variables
669
620
run : src/ci/scripts/setup-environment.sh
670
- shell : bash
671
621
env :
672
622
EXTRA_VARIABLES : " ${{ toJson(matrix.env) }}"
673
623
if : success() && !env.SKIP_JOB
674
624
- name : decide whether to skip this job
675
625
run : src/ci/scripts/should-skip-this.sh
676
- shell : bash
677
626
if : success() && !env.SKIP_JOB
678
627
- name : collect CPU statistics
679
628
run : src/ci/scripts/collect-cpu-stats.sh
680
- shell : bash
681
629
if : success() && !env.SKIP_JOB
682
630
- name : show the current environment
683
631
run : src/ci/scripts/dump-environment.sh
684
- shell : bash
685
632
if : success() && !env.SKIP_JOB
686
633
- name : install awscli
687
634
run : src/ci/scripts/install-awscli.sh
688
- shell : bash
689
635
if : success() && !env.SKIP_JOB
690
636
- name : install sccache
691
637
run : src/ci/scripts/install-sccache.sh
692
- shell : bash
693
638
if : success() && !env.SKIP_JOB
694
639
- name : install clang
695
640
run : src/ci/scripts/install-clang.sh
696
- shell : bash
697
641
if : success() && !env.SKIP_JOB
698
642
- name : install WIX
699
643
run : src/ci/scripts/install-wix.sh
700
- shell : bash
701
644
if : success() && !env.SKIP_JOB
702
645
- name : ensure the build happens on a partition with enough space
703
646
run : src/ci/scripts/symlink-build-dir.sh
704
- shell : bash
705
647
if : success() && !env.SKIP_JOB
706
648
- name : disable git crlf conversion
707
649
run : src/ci/scripts/disable-git-crlf-conversion.sh
708
- shell : bash
709
650
if : success() && !env.SKIP_JOB
710
651
- name : install MSYS2
711
652
run : src/ci/scripts/install-msys2.sh
712
- shell : bash
713
653
if : success() && !env.SKIP_JOB
714
654
- name : install MinGW
715
655
run : src/ci/scripts/install-mingw.sh
716
- shell : bash
717
656
if : success() && !env.SKIP_JOB
718
657
- name : install ninja
719
658
run : src/ci/scripts/install-ninja.sh
720
- shell : bash
721
659
if : success() && !env.SKIP_JOB
722
660
- name : enable ipv6 on Docker
723
661
run : src/ci/scripts/enable-docker-ipv6.sh
724
- shell : bash
725
662
if : success() && !env.SKIP_JOB
726
663
- name : disable git crlf conversion
727
664
run : src/ci/scripts/disable-git-crlf-conversion.sh
728
- shell : bash
729
665
if : success() && !env.SKIP_JOB
730
666
- name : checkout submodules
731
667
run : src/ci/scripts/checkout-submodules.sh
732
- shell : bash
733
668
if : success() && !env.SKIP_JOB
734
669
- name : ensure line endings are correct
735
670
run : src/ci/scripts/verify-line-endings.sh
736
- shell : bash
737
671
if : success() && !env.SKIP_JOB
738
672
- name : run the build
739
673
run : src/ci/scripts/run-build-from-ci.sh
740
- shell : bash
741
674
env :
742
675
AWS_ACCESS_KEY_ID : " ${{ env.CACHES_AWS_ACCESS_KEY_ID }}"
743
676
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}"
744
677
TOOLSTATE_REPO_ACCESS_TOKEN : " ${{ secrets.TOOLSTATE_REPO_ACCESS_TOKEN }}"
745
678
if : success() && !env.SKIP_JOB
746
679
- name : upload artifacts to S3
747
680
run : src/ci/scripts/upload-artifacts.sh
748
- shell : bash
749
681
env :
750
682
AWS_ACCESS_KEY_ID : " ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}"
751
683
AWS_SECRET_ACCESS_KEY : " ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}"
0 commit comments