Skip to content

Commit d21f2f2

Browse files
committed
chore: make benchmark publish happen on all os's again
1 parent bda2b29 commit d21f2f2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

crates/xtask/src/main.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -712,10 +712,8 @@ impl Xtasks {
712712
let mut rows = Vec::default();
713713
for os in <CiOs as strum::VariantArray>::VARIANTS {
714714
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-
);
715+
let step_should_run_on_main_os =
716+
matches!(row.subcmd, Xtasks::Build | Xtasks::Docs { .. });
719717
let is_coverage_step = row.global_args.coverage;
720718

721719
if !os.is_main_os() && step_should_run_on_main_os {

0 commit comments

Comments
 (0)