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 4b94bd6 commit 41652cdCopy full SHA for 41652cd
xtask/src/cargo.rs
@@ -322,6 +322,17 @@ impl Cargo {
322
rustflags.push_str(" --verbose");
323
cmd.env("RUSTFLAGS", rustflags);
324
}
325
+
326
+ // Skip the uefi-macros compilation "ui" tests on the nightly
327
+ // toolchain. These tests are sensitive to compiler version, and
328
+ // sometimes the output on nightly doesn't match the stable
329
+ // toolchain.
330
+ let toolchain = env::var("RUSTUP_TOOLCHAIN").unwrap_or_default();
331
+ if toolchain.starts_with("nightly-")
332
+ {
333
+ println!("skipping uefi-macros ui tests for toolchain {toolchain}");
334
+ tool_args.extend(["--skip", "ui"]);
335
+ }
336
337
};
338
cmd.arg(action);
0 commit comments