Run only a single job per workflow matrix at a time

This limits each run of these workflows to a single
active matrix job. This means, for each PR, merge or
release only five jobs run concurrently.
This commit is contained in:
Johannes Meyer 2022-06-29 16:29:28 +02:00
parent d29ff62017
commit 9f757dd551
4 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@ jobs:
strategy:
fail-fast: false
max-parallel: 1
matrix:
distro:
- name: debian

View File

@ -17,6 +17,7 @@ jobs:
strategy:
fail-fast: false
max-parallel: 1
matrix:
codename:
- bullseye

View File

@ -17,6 +17,7 @@ jobs:
strategy:
fail-fast: false
max-parallel: 1
matrix:
distro:
- name: rhel

View File

@ -17,6 +17,7 @@ jobs:
strategy:
fail-fast: false
max-parallel: 1
matrix:
bits: [32, 64]