Skip to content

Commit

Permalink
Restricting benchmarks command
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ecton committed May 2, 2022
1 parent 0a4ad98 commit 9e284e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 9e284e6

Please sign in to comment.