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 bda2b29 commit d21f2f2Copy full SHA for d21f2f2
crates/xtask/src/main.rs
@@ -712,10 +712,8 @@ impl Xtasks {
712
let mut rows = Vec::default();
713
for os in <CiOs as strum::VariantArray>::VARIANTS {
714
for row in output.iter() {
715
- let step_should_run_on_main_os = matches!(
716
- row.subcmd,
717
- Xtasks::Build | Xtasks::Docs { .. } | Xtasks::Bencher { .. }
718
- );
+ let step_should_run_on_main_os =
+ matches!(row.subcmd, Xtasks::Build | Xtasks::Docs { .. });
719
let is_coverage_step = row.global_args.coverage;
720
721
if !os.is_main_os() && step_should_run_on_main_os {
0 commit comments