We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2c140e commit 6e12727Copy full SHA for 6e12727
1 file changed
crates/cargo-codspeed/src/build.rs
@@ -98,7 +98,7 @@ impl BuildOptions<'_> {
98
/// This command explicitely ignores the `self.benches`, we build all the benches and only move the relevant ones afterwards
99
fn build_command(&self) -> Command {
100
let mut cargo = Command::new("cargo");
101
- cargo.args(["bench", "--no-run"]);
+ cargo.args(["build", "--benches"]);
102
103
if let Some(features) = self.features {
104
cargo.arg("--features").arg(features.join(","));
0 commit comments