Run bootstrap tests sooner in the x test pipeline

This commit is contained in:
Jakub Beránek
2025-07-13 14:38:33 +02:00
parent bfc046a4b8
commit a3c90b69af

View File

@@ -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,
),