about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-07-13 14:38:33 +0200
committerJakub Beránek <berykubik@gmail.com>2025-07-13 14:38:33 +0200
commita3c90b69af76589cc9840bbfd95e6267e531dc92 (patch)
treebd163ed078099bcb2f065e91df2f473018c9e5a7
parentbfc046a4b8d6b57db02540182466e989a9b0fb40 (diff)
downloadrust-a3c90b69af76589cc9840bbfd95e6267e531dc92.tar.gz
rust-a3c90b69af76589cc9840bbfd95e6267e531dc92.zip
Run bootstrap tests sooner in the `x test` pipeline
-rw-r--r--src/bootstrap/src/core/builder/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/src/core/builder/mod.rs b/src/bootstrap/src/core/builder/mod.rs
index 4d606953d99..7115c5a1cbe 100644
--- a/src/bootstrap/src/core/builder/mod.rs
+++ b/src/bootstrap/src/core/builder/mod.rs
@@ -1044,6 +1044,7 @@ impl<'a> Builder<'a> {
             Kind::Test => describe!(
                 crate::core::build_steps::toolstate::ToolStateCheck,
                 test::Tidy,
+                test::Bootstrap,
                 test::Ui,
                 test::Crashes,
                 test::Coverage,
@@ -1098,8 +1099,6 @@ impl<'a> Builder<'a> {
                 test::RustInstaller,
                 test::TestFloatParse,
                 test::CollectLicenseMetadata,
-                // Run bootstrap close to the end as it's unlikely to fail
-                test::Bootstrap,
                 // Run run-make last, since these won't pass without make on Windows
                 test::RunMake,
             ),