We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c86e8 commit 64309fcCopy full SHA for 64309fc
crates/cargo-codspeed/src/build.rs
@@ -88,7 +88,7 @@ impl BuildOptions<'_> {
88
/// Note: the command explicitely ignores the `self.benches`, since no matter what `cargo bench` builds all benches for the built packages
89
fn build_command(&self) -> Command {
90
let mut cargo = Command::new("cargo");
91
- cargo.args(["bench", "--no-run"]);
+ cargo.args(["build", "--benches"]);
92
93
if let Some(features) = self.features {
94
cargo.arg("--features").arg(features.join(","));
0 commit comments