Skip to content

Commit f882309

Browse files
committed
Add cargo miri to x.py check
1 parent c4b9b65 commit f882309

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: src/bootstrap/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,7 @@ impl<'a> Builder<'a> {
621621
check::CodegenBackend,
622622
check::Clippy,
623623
check::Miri,
624+
check::CargoMiri,
624625
check::Rls,
625626
check::RustAnalyzer,
626627
check::Rustfmt,

Diff for: src/bootstrap/check.rs

+1
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ tool_check_step!(Rustdoc, "src/tools/rustdoc", "src/librustdoc", SourceType::InT
457457
// rejected.
458458
tool_check_step!(Clippy, "src/tools/clippy", SourceType::InTree);
459459
tool_check_step!(Miri, "src/tools/miri", SourceType::InTree);
460+
tool_check_step!(CargoMiri, "src/tools/miri/cargo-miri", SourceType::InTree);
460461
tool_check_step!(Rls, "src/tools/rls", SourceType::InTree);
461462
tool_check_step!(Rustfmt, "src/tools/rustfmt", SourceType::InTree);
462463

0 commit comments

Comments
 (0)