Skip to content

Commit

Permalink
chore(ci): fix concurrency (#110)
Browse files Browse the repository at this point in the history
* chore(ci): add concurrency group per branch

* chore(ci): disable cancel-in-progress
  • Loading branch information
0xawaz authored Nov 6, 2024
1 parent eef648a commit 63f1a7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/fhevm-coprocessor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- amina/fhevm-coprocessor-workflows
paths:
- .github/workflows/fhevm-coprocessor.yml
- .github/workflows/common-docker.yml
Expand All @@ -14,8 +13,8 @@ on:
- published

concurrency:
group: fhevm-coprocessor
cancel-in-progress: true
group: fhevm-coprocessor-${{ github.ref_name }}
cancel-in-progress: false

jobs:
docker-coprocessor:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/fhevm-smart-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- amina/fhevm-coprocessor-workflows
paths:
- .github/workflows/fhevm-smart-contracts.yml
- .github/workflows/common-docker.yml
Expand All @@ -14,8 +13,8 @@ on:
- published

concurrency:
group: fhevm-smart-contracts
cancel-in-progress: true
group: fhevm-smart-contracts-${{ github.ref_name }}
cancel-in-progress: false

jobs:
docker-smart-contracts:
Expand Down

0 comments on commit 63f1a7d

Please sign in to comment.