Skip to content

Commit 36a5aa4

Browse files
committed
CI: trying out macos 14 image (which is arm64).
1 parent 7d19eed commit 36a5aa4

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.github/workflows/full_ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
contents: read # to fetch code (actions/checkout)
3232

3333
name: macOS
34-
runs-on: macos-13
34+
runs-on: macos-14
3535
strategy:
3636
fail-fast: true
3737
matrix:
3838
target: [
39-
x86_64-apple-darwin,
39+
aarch64-apple-darwin,
4040
]
4141
steps:
4242
- uses: actions/checkout@v4
@@ -217,10 +217,10 @@ jobs:
217217
max-parallel: 4
218218
matrix:
219219
target:
220-
- { toolchain: stable, os: macos-13 }
221-
- { toolchain: beta, os: macos-13 }
222-
- { toolchain: nightly, os: macos-13 }
223-
- { toolchain: 1.71.0, os: macos-13 }
220+
- { toolchain: stable, os: macos-14 }
221+
- { toolchain: beta, os: macos-14 }
222+
- { toolchain: nightly, os: macos-14 }
223+
- { toolchain: 1.71.0, os: macos-14 }
224224
runs-on: ${{ matrix.target.os }}
225225
steps:
226226
- uses: actions/checkout@v4

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ targets = [
106106
"wasm32-unknown-emscripten",
107107
"wasm32-unknown-unknown",
108108
"wasm32-wasi",
109-
"x86_64-apple-darwin",
110-
"x86_64-apple-ios",
111109
"x86_64-fortanix-unknown-sgx",
112110
"x86_64-linux-android",
113111
"x86_64-pc-solaris",

ci/build.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ x86_64-unknown-redox \
147147

148148
RUST_APPLE_TARGETS="\
149149
aarch64-apple-ios \
150-
x86_64-apple-darwin \
151-
x86_64-apple-ios \
152150
"
153151

154152
RUST_NIGHTLY_APPLE_TARGETS="\

0 commit comments

Comments
 (0)