Skip to content

Commit e8ed135

Browse files
committed
xtask: hard-enable the memory-watermark feature
1 parent 8ff03e7 commit e8ed135

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

xtask/src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,19 @@ fn main() -> anyhow::Result<()> {
118118
}
119119

120120
fn run_test(target: &str, examples: &[String]) -> anyhow::Result<()> {
121+
const FEATURES: &str = "memory-watermark"; // required by actor-watermark
122+
121123
arm_example(&CargoCommand::BuildAll {
122124
target,
123-
features: None,
125+
features: Some(FEATURES),
124126
mode: BuildMode::Release,
125127
})?;
126128

127129
for example in examples {
128130
let cmd = CargoCommand::Run {
129131
example,
130132
target,
131-
features: None,
133+
features: Some(FEATURES),
132134
mode: BuildMode::Release,
133135
};
134136

0 commit comments

Comments
 (0)