Skip to content

Commit

Permalink
Run only a single job per workflow matrix at a time
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nilmerg committed Jan 20, 2023
1 parent d29ff62 commit 9f757dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 1
matrix:
distro:
- name: debian
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/raspbian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 1
matrix:
codename:
- bullseye
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 1
matrix:
distro:
- name: rhel
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 1
matrix:
bits: [32, 64]

Expand Down

0 comments on commit 9f757dd

Please sign in to comment.