Skip to content

Commit

Permalink
xtask: hard-enable the memory-watermark feature
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Apr 1, 2022
1 parent 8ff03e7 commit e8ed135
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,19 @@ fn main() -> anyhow::Result<()> {
}

fn run_test(target: &str, examples: &[String]) -> anyhow::Result<()> {
const FEATURES: &str = "memory-watermark"; // required by actor-watermark

arm_example(&CargoCommand::BuildAll {
target,
features: None,
features: Some(FEATURES),
mode: BuildMode::Release,
})?;

for example in examples {
let cmd = CargoCommand::Run {
example,
target,
features: None,
features: Some(FEATURES),
mode: BuildMode::Release,
};

Expand Down

0 comments on commit e8ed135

Please sign in to comment.