Skip to content

Commit d5e6121

Browse files
committed
bootstrap: add check step for src/tools/bump-stage0
1 parent 5f372fe commit d5e6121

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/bootstrap/src/core/build_steps/check.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -839,3 +839,9 @@ tool_check_step!(Linkchecker {
839839
mode: |_builder| Mode::ToolBootstrap,
840840
default: false
841841
});
842+
843+
tool_check_step!(BumpStage0 {
844+
path: "src/tools/bump-stage0",
845+
mode: |_builder| Mode::ToolBootstrap,
846+
default: false
847+
});

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,6 +1061,7 @@ impl<'a> Builder<'a> {
10611061
check::FeaturesStatusDump,
10621062
check::CoverageDump,
10631063
check::Linkchecker,
1064+
check::BumpStage0,
10641065
// This has special staging logic, it may run on stage 1 while others run on stage 0.
10651066
// It takes quite some time to build stage 1, so put this at the end.
10661067
//

0 commit comments

Comments
 (0)