File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
src/bootstrap/src/core/builder Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -945,7 +945,6 @@ impl<'a> Builder<'a> {
945
945
clippy:: CI ,
946
946
) ,
947
947
Kind :: Check | Kind :: Fix => describe ! (
948
- check:: Std ,
949
948
check:: Rustc ,
950
949
check:: Rustdoc ,
951
950
check:: CodegenBackend ,
@@ -961,6 +960,13 @@ impl<'a> Builder<'a> {
961
960
check:: Compiletest ,
962
961
check:: FeaturesStatusDump ,
963
962
check:: CoverageDump ,
963
+ // This has special staging logic, it may run on stage 1 while others run on stage 0.
964
+ // It takes quite some time to build stage 1, so put this at the end.
965
+ //
966
+ // FIXME: This also helps bootstrap to not interfere with stage 0 builds. We should probably fix
967
+ // that issue somewhere else, but we still want to keep `check::Std` at the end so that the
968
+ // quicker steps run before this.
969
+ check:: Std ,
964
970
) ,
965
971
Kind :: Test => describe ! (
966
972
crate :: core:: build_steps:: toolstate:: ToolStateCheck ,
You can’t perform that action at this time.
0 commit comments