File tree 1 file changed +23
-3
lines changed
1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change 26
26
- name : Execute run-docker.sh
27
27
run : LIBC_CI=1 sh ./ci/run-docker.sh ${{ matrix.target }}
28
28
29
- macos :
29
+ macos1 :
30
30
permissions :
31
31
contents : read # to fetch code (actions/checkout)
32
32
45
45
- name : Execute run.sh
46
46
run : LIBC_CI=1 sh ./ci/run.sh ${{ matrix.target }}
47
47
48
+ macos2 :
49
+ permissions :
50
+ contents : read # to fetch code (actions/checkout)
51
+
52
+ name : macOS
53
+ runs-on : macos-14
54
+ strategy :
55
+ fail-fast : true
56
+ matrix :
57
+ target : [
58
+ aarch64-apple-darwin,
59
+ ]
60
+ steps :
61
+ - uses : actions/checkout@v4
62
+ - name : Setup Rust toolchain
63
+ run : TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
64
+ - name : Execute run.sh
65
+ run : LIBC_CI=1 sh ./ci/run.sh ${{ matrix.target }}
66
+
48
67
windows :
49
68
permissions :
50
69
contents : read # to fetch code (actions/checkout)
@@ -209,7 +228,7 @@ jobs:
209
228
contents : read # to fetch code (actions/checkout)
210
229
211
230
name : Build Channels macOS
212
- needs : macos
231
+ needs : macos2
213
232
env :
214
233
OS : macos
215
234
strategy :
@@ -276,7 +295,8 @@ jobs:
276
295
docker_linux_tier1,
277
296
docker_linux_tier2,
278
297
# docker_linux_build_std,
279
- macos,
298
+ macos1,
299
+ macos2,
280
300
windows,
281
301
style_check,
282
302
docker_switch,
You can’t perform that action at this time.
0 commit comments