File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -152,12 +152,14 @@ jobs:
152
152
runs-on : macos-latest
153
153
steps :
154
154
- uses : actions/checkout@v3
155
- - uses : dtolnay/rust-toolchain@stable
155
+ - uses : dtolnay/rust-toolchain@nightly
156
156
with :
157
157
targets : aarch64-apple-darwin, aarch64-apple-ios
158
+ components : rust-src
158
159
- uses : Swatinem/rust-cache@v2
159
160
- run : cargo test --no-run --target=aarch64-apple-darwin --features=std
160
161
- run : cargo test --no-run --target=aarch64-apple-ios --features=std
162
+ - run : cargo test --no-run --target=aarch64-apple-watchos-sim -Zbuild-std --features=std
161
163
162
164
cross-link :
163
165
name : Cross Build/Link
@@ -273,6 +275,9 @@ jobs:
273
275
aarch64-kmc-solid_asp3,
274
276
armv6k-nintendo-3ds,
275
277
riscv32imc-esp-espidf,
278
+ # `std` support still in progress. Can be moved up with the other
279
+ # apple targets after https://github.com/rust-lang/rust/pull/103503
280
+ aarch64-apple-tvos,
276
281
]
277
282
include :
278
283
# Supported tier 3 targets without libstd support
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ compiler_builtins = { version = "0.1", optional = true }
18
18
core = { version = " 1.0" , optional = true , package = " rustc-std-workspace-core" }
19
19
20
20
[target .'cfg(unix)' .dependencies ]
21
- libc = { version = " 0.2.128 " , default-features = false }
21
+ libc = { version = " 0.2.136 " , default-features = false }
22
22
23
23
[target .'cfg(target_os = "wasi")' .dependencies ]
24
24
wasi = { version = " 0.11" , default-features = false }
You can’t perform that action at this time.
0 commit comments