We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff03e7 commit e8ed135Copy full SHA for e8ed135
xtask/src/main.rs
@@ -118,17 +118,19 @@ fn main() -> anyhow::Result<()> {
118
}
119
120
fn run_test(target: &str, examples: &[String]) -> anyhow::Result<()> {
121
+ const FEATURES: &str = "memory-watermark"; // required by actor-watermark
122
+
123
arm_example(&CargoCommand::BuildAll {
124
target,
- features: None,
125
+ features: Some(FEATURES),
126
mode: BuildMode::Release,
127
})?;
128
129
for example in examples {
130
let cmd = CargoCommand::Run {
131
example,
132
133
134
135
};
136
0 commit comments