ci: bench: Enable all icount benches in CI

So far we haven't been running the `mem_icount` benches in CI, but this
would be useful. Use a glob pattern for the test so this and future
icount benchmarks all get run.
This commit is contained in:
Trevor Gross 2025-12-05 04:59:08 -05:00
parent b09903f791
commit 15d03decfb

View file

@ -25,7 +25,7 @@ tag="$(echo "$target" | cut -d'-' -f1)"
# Run benchmarks once
function run_icount_benchmarks() {
cargo_args=(
"--bench" "icount"
"--bench" "*icount*"
"--no-default-features"
"--features" "unstable,unstable-float,icount"
)