Skip to content

Commit 087f25d

Browse files
art049claude
andcommitted
feat: change default profile from release to bench for build command
Change cargo codspeed build to default to --profile bench instead of --profile release to align with cargo bench behavior and allow users to leverage bench profile customizations. Fixes COD-393 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent b71c93b commit 087f25d

File tree

1 file changed

+1
-1
lines changed
  • crates/cargo-codspeed/src

1 file changed

+1
-1
lines changed

crates/cargo-codspeed/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ enum Commands {
6666
jobs: Option<u32>,
6767

6868
/// Build the benchmarks with the specified profile
69-
#[arg(long, default_value = "release")]
69+
#[arg(long, default_value = "bench")]
7070
profile: String,
7171
},
7272
/// Run the previously built benchmarks

0 commit comments

Comments
 (0)