From 7b99e210e091e5e41be43c515a3a7da1d4e563b0 Mon Sep 17 00:00:00 2001 From: Joe Birr-Pixton Date: Wed, 25 Feb 2026 16:59:40 +0000 Subject: [PATCH] Use bench profile for benchmarks --- ci-bench-runner/src/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-bench-runner/src/runner.rs b/ci-bench-runner/src/runner.rs index 100a05f..b282c24 100644 --- a/ci-bench-runner/src/runner.rs +++ b/ci-bench-runner/src/runner.rs @@ -89,7 +89,7 @@ impl BenchRunner for LocalBenchRunner { command .arg("build") .arg("--locked") - .arg("--release") + .arg("--profile=bench") .current_dir(&bench_path); run_command(command, command_logs)?;