diff options
| author | Ralf Jung <post@ralfj.de> | 2022-10-30 10:28:46 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-10-30 10:28:46 +0100 |
| commit | c905fd285a4bbec0c1fdbb823c1825ca0493ab66 (patch) | |
| tree | c74dd65257f869dae856c8511e332135b0dc556b /src/ci | |
| parent | b03502b35d111bef0399a66ab3cc765f0802e8ba (diff) | |
| download | rust-c905fd285a4bbec0c1fdbb823c1825ca0493ab66.tar.gz rust-c905fd285a4bbec0c1fdbb823c1825ca0493ab66.zip | |
skip bootstrap target sanity checks when testing Miri
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh b/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh index d8738455610..7dde6370904 100755 --- a/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh +++ b/src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh @@ -27,10 +27,7 @@ python3 "$X_PY" test --stage 2 src/tools/rustfmt python3 "$X_PY" test --stage 2 src/tools/miri # We natively run this script on x86_64-unknown-linux-gnu and x86_64-pc-windows-msvc. # Also cover some other targets (on both of these hosts) via cross-testing. -# -# Currently disabled -- we end up pulling in a cross-compile of LLVM (maybe -# just overly eager sanity checks), but in any case this won't work when -# building LLVM as of this comment. -#python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-msvc -#FIXME(https://github.com/rust-lang/rust/issues/103519): macOS testing is currently disabled -# python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin +export BOOTSTRAP_SKIP_TARGET_SANITY=1 # we don't need `cc` for these targets +python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-msvc +python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin +unset BOOTSTRAP_SKIP_TARGET_SANITY |
