@@ -3,14 +3,10 @@ name: full CI
3
3
on :
4
4
merge_group :
5
5
pull_request :
6
- branches :
7
- - libc-0.2
8
- types :
9
- - labeled
6
+ types : [opened, synchronize, reopened]
10
7
11
8
jobs :
12
9
docker_linux_tier1 :
13
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
14
10
permissions :
15
11
contents : read # to fetch code (actions/checkout)
16
12
31
27
run : LIBC_CI=1 sh ./ci/run-docker.sh ${{ matrix.target }}
32
28
33
29
macos :
34
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
35
30
permissions :
36
31
contents : read # to fetch code (actions/checkout)
37
32
51
46
run : LIBC_CI=1 sh ./ci/run.sh ${{ matrix.target }}
52
47
53
48
windows :
54
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
55
49
permissions :
56
50
contents : read # to fetch code (actions/checkout)
57
51
86
80
shell : bash
87
81
88
82
style_check :
89
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
90
83
permissions :
91
84
contents : read # to fetch code (actions/checkout)
92
85
100
93
run : sh ci/style.sh
101
94
102
95
docker_linux_tier2 :
103
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
104
96
permissions :
105
97
contents : read # to fetch code (actions/checkout)
106
98
@@ -173,7 +165,6 @@ jobs:
173
165
174
166
# devkitpro's pacman needs to be connected from Docker.
175
167
docker_switch :
176
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
177
168
permissions :
178
169
contents : read # to fetch code (actions/checkout)
179
170
@@ -188,7 +179,6 @@ jobs:
188
179
run : LIBC_CI=1 sh ./ci/run-docker.sh switch
189
180
190
181
build_channels_linux :
191
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
192
182
permissions :
193
183
contents : read # to fetch code (actions/checkout)
194
184
@@ -215,7 +205,6 @@ jobs:
215
205
run : LIBC_CI=1 TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/build.sh
216
206
217
207
build_channels_macos :
218
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
219
208
permissions :
220
209
contents : read # to fetch code (actions/checkout)
221
210
@@ -241,7 +230,6 @@ jobs:
241
230
run : LIBC_CI=1 TOOLCHAIN=${{ matrix.target.toolchain }} sh ./ci/build.sh
242
231
243
232
build_channels_windows :
244
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
245
233
permissions :
246
234
contents : read # to fetch code (actions/checkout)
247
235
@@ -266,7 +254,6 @@ jobs:
266
254
shell : bash
267
255
268
256
check_cfg :
269
- if : github.event.label.name == 'libc-0.2-pre-merge-ci'
270
257
permissions :
271
258
contents : read # to fetch code (actions/checkout)
272
259
0 commit comments