Skip to content

Commit

Permalink
ci(benchmark): Prevent benchmarks from running concurrently (#10924)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi authored Sep 23, 2024
1 parent 9141d15 commit 521bbfe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/benchmark-destroy-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ name: Destroy Benchmark Env

on:
schedule:
- cron: '0 4 * * *'
- cron: '0 5 * * *'
workflow_dispatch:

permissions:
id-token: write
contents: read

concurrency:
group: benchmark
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/benchmark-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ permissions:
id-token: write
contents: read

concurrency:
group: benchmark
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 521bbfe

Please sign in to comment.