File tree Expand file tree Collapse file tree 5 files changed +1
-70
lines changed Expand file tree Collapse file tree 5 files changed +1
-70
lines changed Original file line number Diff line number Diff line change @@ -255,22 +255,11 @@ jobs:
255
255
env :
256
256
TARGET : ${{ matrix.target.tuple }}
257
257
258
- build-std-detect :
259
- needs : [style]
260
- name : Build std_detect
261
- runs-on : ubuntu-latest
262
- steps :
263
- - uses : actions/checkout@v4
264
- - name : Install Rust
265
- run : rustup update nightly && rustup default nightly
266
- - run : ./ci/build-std-detect.sh
267
-
268
258
conclusion :
269
259
needs :
270
260
- docs
271
261
- verify
272
262
- test
273
- - build-std-detect
274
263
runs-on : ubuntu-latest
275
264
# We need to ensure this job does *not* get skipped if its dependencies fail,
276
265
# because a skipped job is considered a success by GitHub. So we have to
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ dox() {
16
16
cargo clean --target " ${1} "
17
17
18
18
cargo build --verbose --target " ${1} " --manifest-path crates/core_arch/Cargo.toml
19
- cargo build --verbose --target " ${1} " --manifest-path crates/std_detect/Cargo.toml
20
-
21
19
cargo doc --verbose --target " ${1} " --manifest-path crates/core_arch/Cargo.toml
22
- cargo doc --verbose --target " ${1} " --manifest-path crates/std_detect/Cargo.toml
23
20
}
24
21
25
22
if [ -z " $1 " ]; then
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ run() {
37
37
--env NORUN \
38
38
--env RUSTFLAGS \
39
39
--env CARGO_UNSTABLE_BUILD_STD \
40
- --env RUST_STD_DETECT_UNSTABLE \
41
40
--volume " ${HOME} /.cargo" :/cargo \
42
41
--volume " $( rustc --print sysroot) " :/rust:ro \
43
42
--volume " $( pwd) " :/checkout:ro \
Original file line number Diff line number Diff line change @@ -78,20 +78,12 @@ cargo_test() {
78
78
}
79
79
80
80
CORE_ARCH=" --manifest-path=crates/core_arch/Cargo.toml"
81
- STD_DETECT=" --manifest-path=crates/std_detect/Cargo.toml"
82
81
STDARCH_EXAMPLES=" --manifest-path=examples/Cargo.toml"
83
82
INTRINSIC_TEST=" --manifest-path=crates/intrinsic-test/Cargo.toml"
84
83
85
84
cargo_test " ${CORE_ARCH} ${PROFILE} "
86
85
87
86
if [ " $NOSTD " != " 1" ]; then
88
- cargo_test " ${STD_DETECT} ${PROFILE} "
89
-
90
- cargo_test " ${STD_DETECT} --no-default-features"
91
- cargo_test " ${STD_DETECT} --no-default-features --features=std_detect_file_io"
92
- cargo_test " ${STD_DETECT} --no-default-features --features=std_detect_dlsym_getauxval"
93
- cargo_test " ${STD_DETECT} --no-default-features --features=std_detect_dlsym_getauxval,std_detect_file_io"
94
-
95
87
cargo_test " ${STDARCH_EXAMPLES} ${PROFILE} "
96
88
fi
97
89
@@ -139,7 +131,7 @@ case ${TARGET} in
139
131
cargo_test " ${PROFILE} "
140
132
;;
141
133
142
- # Setup aarch64 & armv7 specific variables, the runner, along with some
134
+ # Setup aarch64 & armv7 specific variables, the runner, along with some
143
135
# tests to skip
144
136
aarch64-unknown-linux-gnu* )
145
137
TEST_CPPFLAGS=" -fuse-ld=lld -I/usr/aarch64-linux-gnu/include/ -I/usr/aarch64-linux-gnu/include/c++/9/aarch64-linux-gnu/"
You can’t perform that action at this time.
0 commit comments