Skip to content

Commit c765c73

Browse files
committed
CI: Limit job concurrency
We are seeing random CI failures with: Failed to set execute bit on remote files Limit concurrency in case it is related to concurrent access to the same Docker image.
1 parent 521ea02 commit c765c73

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838
name: Molecule
3939
runs-on: ubuntu-22.04
4040
needs: build
41+
concurrency:
42+
group: matrix-job-${{ matrix.image }}
43+
cancel-in-progress: false
4144
strategy:
4245
fail-fast: false
4346
matrix:

0 commit comments

Comments
 (0)