Skip to content

Commit 517a08c

Browse files
committed
chore: disable profile with tracy for most checks
1 parent d21f2f2 commit 517a08c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

crates/xtask/src/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ impl Features {
142142
)
143143
}
144144

145+
fn without(self, feature: Feature) -> Self {
146+
Self(self.0.into_iter().filter(|f| *f != feature).collect())
147+
}
148+
145149
fn to_cargo_args(&self) -> Vec<String> {
146150
if self.0.is_empty() {
147151
vec![]
@@ -1625,7 +1629,7 @@ impl Xtasks {
16251629

16261630
let default_args = app_settings
16271631
.clone()
1628-
.with_features(Features::all_features())
1632+
.with_features(Features::all_features().without(Feature::ProfileWithTracy))
16291633
.with_profile(
16301634
app_settings
16311635
.profile

0 commit comments

Comments
 (0)