File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -259,32 +259,32 @@ jobs:
259
259
260
260
name : Build Channels macOS
261
261
needs : macos
262
- runs-on : macos-12
263
262
env :
264
263
OS : macos
265
264
strategy :
266
265
fail-fast : true
267
266
max-parallel : 4
268
267
matrix :
269
- toolchain : [
270
- stable,
271
- beta,
272
- nightly,
273
- 1.13.0,
274
- 1.19.0,
275
- 1.24.0,
276
- 1.25.0,
277
- 1.30.0,
278
- ]
268
+ target :
269
+ - { toolchain: stable, os: macos-12 }
270
+ - { toolchain: beta, os: macos-12 }
271
+ - { toolchain: nightly, os: macos-12 }
272
+ # Use macOS 11 for older toolchains as newer Xcode donesn't work well.
273
+ - { toolchain: 1.13.0, os: macos-11 }
274
+ - { toolchain: 1.19.0, os: macos-11 }
275
+ - { toolchain: 1.24.0, os: macos-11 }
276
+ - { toolchain: 1.25.0, os: macos-11 }
277
+ - { toolchain: 1.30.0, os: macos-11 }
278
+ runs-on : ${{ matrix.target.os }}
279
279
steps :
280
280
- uses : rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
281
281
with :
282
282
github_token : " ${{ secrets.GITHUB_TOKEN }}"
283
283
- uses : actions/checkout@v3
284
284
- name : Setup Rust toolchain
285
- run : TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/install-rust.sh
285
+ run : TOOLCHAIN=${{ matrix.target. toolchain }} sh ./ci/install-rust.sh
286
286
- name : Execute build.sh
287
- run : LIBC_CI=1 TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/build.sh
287
+ run : LIBC_CI=1 TOOLCHAIN=${{ matrix.target. toolchain }} sh ./ci/build.sh
288
288
289
289
build_channels_windows :
290
290
permissions :
You can’t perform that action at this time.
0 commit comments