mirror of https://github.com/Icinga/icinga2.git
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:
parent
d29ff62017
commit
9f757dd551
|
@ -17,6 +17,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
max-parallel: 1
|
||||||
matrix:
|
matrix:
|
||||||
distro:
|
distro:
|
||||||
- name: debian
|
- name: debian
|
||||||
|
|
|
@ -17,6 +17,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
max-parallel: 1
|
||||||
matrix:
|
matrix:
|
||||||
codename:
|
codename:
|
||||||
- bullseye
|
- bullseye
|
||||||
|
|
|
@ -17,6 +17,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
max-parallel: 1
|
||||||
matrix:
|
matrix:
|
||||||
distro:
|
distro:
|
||||||
- name: rhel
|
- name: rhel
|
||||||
|
|
|
@ -17,6 +17,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
max-parallel: 1
|
||||||
matrix:
|
matrix:
|
||||||
bits: [32, 64]
|
bits: [32, 64]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue