Skip to content

Commit a80ba38

Browse files
authored
Unrolled build for #143887
Rollup merge of #143887 - Kobzol:reroder-bootstrap-tests, r=jieyouxu Run bootstrap tests sooner in the `x test` pipeline With the recently added bootstrap snapshot tests, and in general with our plans to test more things in bootstrap, I feel like the original comment isn't accurate anymore. Recently, on several occasions I had to wait for 40+ minutes of CI just to find out that the bootstrap snapshot tests have failed. I think we should run bootstrap tests towards the beginning instead now. r? ```@jieyouxu```
2 parents 64b185e + a3c90b6 commit a80ba38

File tree

1 file changed

+1
-2
lines changed
  • src/bootstrap/src/core/builder

1 file changed

+1
-2
lines changed

src/bootstrap/src/core/builder/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,6 +1044,7 @@ impl<'a> Builder<'a> {
10441044
Kind::Test => describe!(
10451045
crate::core::build_steps::toolstate::ToolStateCheck,
10461046
test::Tidy,
1047+
test::Bootstrap,
10471048
test::Ui,
10481049
test::Crashes,
10491050
test::Coverage,
@@ -1098,8 +1099,6 @@ impl<'a> Builder<'a> {
10981099
test::RustInstaller,
10991100
test::TestFloatParse,
11001101
test::CollectLicenseMetadata,
1101-
// Run bootstrap close to the end as it's unlikely to fail
1102-
test::Bootstrap,
11031102
// Run run-make last, since these won't pass without make on Windows
11041103
test::RunMake,
11051104
),

0 commit comments

Comments
 (0)