We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 082e401 commit b381547Copy full SHA for b381547
builder/src/main.rs
@@ -11,6 +11,14 @@ fn main() -> eyre::Result<()> {
11
12
install_toolchain(&examples_dir).wrap_err("install toolchain")?;
13
14
+ // Setup miri to avoid race condition in `cargo miri run` below...
15
+ eprintln!("Setting up miri");
16
+ std::process::Command::new("cargo")
17
+ .arg("miri")
18
+ .arg("setup")
19
+ .output()
20
+ .wrap_err("setting up miri")?;
21
+
22
thread::scope(|scope| {
23
let mut handles = Vec::new();
24
0 commit comments