Skip to content

Commit

Permalink
chore: label to toggle benchmark (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
luffykai authored Aug 26, 2024
1 parent 62f2e99 commit a42d89d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,18 @@ jobs:
benchmark-rw:
uses: ./.github/workflows/benchmark-call.yml
if: github.event.pull_request.draft == false
if: |
github.event.pull_request.draft == false &&
contains(github.event.pull_request.labels.*.name, 'run-benchmark')
with:
benchmark_name: single_rw
secrets: inherit

benchmark-filter:
uses: ./.github/workflows/benchmark-call.yml
if: github.event.pull_request.draft == false
if: |
github.event.pull_request.draft == false &&
contains(github.event.pull_request.labels.*.name, 'run-benchmark')
with:
benchmark_name: single_filter
secrets: inherit
4 changes: 3 additions & 1 deletion .github/workflows/recursion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
benchmark:
uses: ./.github/workflows/benchmark-call.yml
if: github.event.pull_request.draft == false
if: |
github.event.pull_request.draft == false &&
contains(github.event.pull_request.labels.*.name, 'run-benchmark')
with:
benchmark_name: vm_verify_fibair
secrets: inherit

0 comments on commit a42d89d

Please sign in to comment.