@cryptotaxi247 / netdata-1 / commits / b985861d9

Limit maximum concurrent CI jobs to avoid blocking other CI. (#11057)

Austin S. Hemmelgarn committed Apr 29, 2021 at 07:22 UTC b985861d93574434c47805e79eada4cc26fedec9
3 files changed +3
.github/workflows/build-and-install.yml
+1
@@ -23,6 +23,7 @@ jobs:
23 name: Build & Install
24 strategy:
25 fail-fast: false
26 + max-parallel: 8
27 matrix:
28 distro:
29 - 'alpine:edge'
.github/workflows/packaging.yml
+1
@@ -45,6 +45,7 @@ jobs:
45 # build failure for one version doesn't prevent us from publishing
46 # successfully built and tested packages for another version.
47 fail-fast: false
48 + max-parallel: 8
49 steps:
50 - name: Checkout PR # Checkout the PR if it's a PR.
51 if: github.event_name == 'pull_request'
.github/workflows/updater.yml
+1
@@ -13,6 +13,7 @@ jobs:
13 name: Install, Build & Update
14 strategy:
15 fail-fast: false
16 + max-parallel: 8
17 matrix:
18 distro:
19 - 'alpine:3.12'