From 9e284e65a6f398aea4bd6f9bdab84594cc4ceefa Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Sun, 1 May 2022 20:13:07 -0700 Subject: [PATCH] Restricting benchmarks command When not specifying the package, the inclusion of paranoid for the fuzzer target causes it to be added to benchmarks as well. This is what was causing the slowdown in CI after the last bug fix. --- .github/workflows/benches.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benches.yml b/.github/workflows/benches.yml index ca57fdfd47..15fa3b7984 100644 --- a/.github/workflows/benches.yml +++ b/.github/workflows/benches.yml @@ -14,11 +14,11 @@ jobs: - name: Build benchmarks run: | - cargo bench --no-run --features sqlite + cargo bench -p benchmarks --no-run --features sqlite - name: Run benchmarks run: | - cargo bench --features sqlite + cargo bench -p benchmarks --features sqlite - name: Generate overview run: |