Skip to content

Commit b39b897

Browse files
committed
do not build cargo-miri by default on stable channel
miri skipped for stable channel by default, do the same for `cargo-miri`. Signed-off-by: onur-ozkan <[email protected]>
1 parent f04f6ca commit b39b897

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/tool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ tool_extended!((self, builder),
10981098
CargoClippy, "src/tools/clippy", "cargo-clippy", stable=true;
10991099
Clippy, "src/tools/clippy", "clippy-driver", stable=true, add_bins_to_sysroot = ["clippy-driver", "cargo-clippy"];
11001100
Miri, "src/tools/miri", "miri", stable=false, add_bins_to_sysroot = ["miri"];
1101-
CargoMiri, "src/tools/miri/cargo-miri", "cargo-miri", stable=true, add_bins_to_sysroot = ["cargo-miri"];
1101+
CargoMiri, "src/tools/miri/cargo-miri", "cargo-miri", stable=false, add_bins_to_sysroot = ["cargo-miri"];
11021102
// FIXME: tool_std is not quite right, we shouldn't allow nightly features.
11031103
// But `builder.cargo` doesn't know how to handle ToolBootstrap in stages other than 0,
11041104
// and this is close enough for now.

0 commit comments

Comments
 (0)