Skip to content

Commit da070d3

Browse files
Clean up y.sh path in CI
1 parent 7ccd8ce commit da070d3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/stdarch.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,10 @@ jobs:
8989
- name: Run stdarch tests
9090
if: ${{ !matrix.cargo_runner }}
9191
run: |
92-
cd build/build_sysroot/sysroot_src/library/stdarch/
93-
CHANNEL=release TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ../../../../../y.sh cargo test
92+
CHANNEL=release TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" cargo test --manifest-path build/build_sysroot/sysroot_src/library/stdarch/Cargo.toml
9493
9594
- name: Run stdarch tests
9695
if: ${{ matrix.cargo_runner }}
9796
run: |
98-
cd build/build_sysroot/sysroot_src/library/stdarch/
9997
# FIXME: these tests fail when the sysroot is compiled with LTO because of a missing symbol in proc-macro.
100-
STDARCH_TEST_EVERYTHING=1 CHANNEL=release CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="${{ matrix.cargo_runner }}" TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ../../../../../y.sh cargo test -- --skip rtm --skip tbm --skip sse4a
98+
STDARCH_TEST_EVERYTHING=1 CHANNEL=release CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="${{ matrix.cargo_runner }}" TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" cargo test --manifest-path build/build_sysroot/sysroot_src/library/stdarch/Cargo.toml -- --skip rtm --skip tbm --skip sse4a

0 commit comments

Comments
 (0)