We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e965f80 commit 2dcbd24Copy full SHA for 2dcbd24
1 file changed
crates/cargo-codspeed/src/build.rs
@@ -98,7 +98,7 @@ impl BuildOptions<'_> {
98
/// This command explicitely ignores the `self.benches`: all benches are built
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