File tree Expand file tree Collapse file tree 5 files changed +2
-71
lines changed Expand file tree Collapse file tree 5 files changed +2
-71
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ jobs:
258
258
# Check that the generated files agree with the checked-in versions.
259
259
check-stdarch-gen :
260
260
needs : [style]
261
- name : Check stdarch-gen-{arm, loongarch} output
261
+ name : Check stdarch-gen-{arm, loongarch} output
262
262
runs-on : ubuntu-latest
263
263
steps :
264
264
- uses : actions/checkout@v4
@@ -277,22 +277,11 @@ jobs:
277
277
cargo run --bin=stdarch-gen-loongarch --release -- crates/stdarch-gen-loongarch/lasx.spec
278
278
git diff --exit-code
279
279
280
- build-std-detect :
281
- needs : [style]
282
- name : Build std_detect
283
- runs-on : ubuntu-latest
284
- steps :
285
- - uses : actions/checkout@v4
286
- - name : Install Rust
287
- run : rustup update nightly && rustup default nightly
288
- - run : ./ci/build-std-detect.sh
289
-
290
280
conclusion :
291
281
needs :
292
282
- docs
293
283
- verify
294
284
- test
295
- - build-std-detect
296
285
- check-stdarch-gen
297
286
runs-on : ubuntu-latest
298
287
# We need to ensure this job does *not* get skipped if its dependencies fail,
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