use local-rebuild instead of BOOTSTRAP_SKIP_TARGET_SANITY workaround

Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
onur-ozkan 2024-09-12 08:38:26 +03:00
parent 041b59eb62
commit 654513e202

View File

@ -67,6 +67,7 @@ pub fn run_tests(env: &Environment) -> anyhow::Result<()> {
[build]
rustc = "{rustc}"
cargo = "{cargo}"
local-rebuild = true
[target.{host_triple}]
llvm-config = "{llvm_config}"
@ -102,13 +103,7 @@ pub fn run_tests(env: &Environment) -> anyhow::Result<()> {
for test_path in env.skipped_tests() {
args.extend(["--skip", test_path]);
}
cmd(&args)
.env("COMPILETEST_FORCE_STAGE0", "1")
// Above we override the stage 0 compiler with previously compiled compiler,
// which can cause confusion in bootstrap's target sanity checks.
.env("BOOTSTRAP_SKIP_TARGET_SANITY", "1")
.run()
.context("Cannot execute tests")
cmd(&args).env("COMPILETEST_FORCE_STAGE0", "1").run().context("Cannot execute tests")
}
/// Tries to find the version of the dist artifacts (either nightly, beta, or 1.XY.Z).