File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,11 @@ jobs:
137
137
138
138
# Test that including as a submodule will still work, both with and without
139
139
# the `backtrace` feature enabled.
140
+ # Building as if part of std requires nightly features to be available
140
141
- run : cargo build --manifest-path crates/as-if-std/Cargo.toml
142
+ if : matrix.rust == 'nightly'
141
143
- run : cargo build --manifest-path crates/as-if-std/Cargo.toml --no-default-features
144
+ if : matrix.rust == 'nightly'
142
145
143
146
windows_arm64 :
144
147
name : Windows AArch64
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
cargo test --target $TARGET
6
- cargo build --target $TARGET --manifest-path crates/as-if-std/Cargo.toml
6
+ rustc --version | grep nightly && cargo build --target $TARGET --manifest-path crates/as-if-std/Cargo.toml
You can’t perform that action at this time.
0 commit comments