Skip to content

Commit

Permalink
github: fix concurrency group syntax
Browse files Browse the repository at this point in the history
- fix concurrency group syntax (needs a group entry)
- cancel started runs

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Dec 6, 2024
1 parent fbec9c7 commit a486a5d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/proof-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
- arch: AARCH64
plat: bcm2711
# test only most recent push:
concurrency: l4v-regression-${{ github.ref }}-${{ strategy.job-index }}
concurrency:
group: l4v-regression-${{ github.ref }}-${{ strategy.job-index }}
cancel-in-progress: true
steps:
- name: Proofs
uses: seL4/ci-actions/aws-proofs@master
Expand Down Expand Up @@ -98,7 +100,9 @@ jobs:
num_domains: ['1', '']
plat: [""]
# test only most recent push:
concurrency: l4v-mcs-regression-${{ github.ref }}-${{ strategy.job-index }}
concurrency:
group: l4v-mcs-regression-${{ github.ref }}-${{ strategy.job-index }}
cancel-in-progress: true
steps:
- name: Proofs
uses: seL4/ci-actions/aws-proofs@master
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/proof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
matrix:
arch: [ARM, ARM_HYP, AARCH64, RISCV64, X64]
# test only most recent push to PR:
concurrency: l4v-pr-${{ github.event.number }}-idx-${{ strategy.job-index }}
concurrency:
group: l4v-${{ github.workflow }}-${{ github.event.number }}-idx-${{ strategy.job-index }}
cancel-in-progress: true
steps:
- name: Proofs
uses: seL4/ci-actions/aws-proofs@master
Expand Down

0 comments on commit a486a5d

Please sign in to comment.