From ada9c3479a2523d9888dc34605b9ccd456475ef7 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Tue, 31 Oct 2023 11:16:04 -0700 Subject: [PATCH 1/2] .github/workflows/ci-linux.yml (standard-pre): Increase max_parallel to 50 --- .github/workflows/ci-linux.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 22df4aa0fd5..cbb4f0dd4ce 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -83,6 +83,9 @@ jobs: tox_packages_factors: >- ["standard"] docker_push_repository: ghcr.io/${{ github.repository }}/ + # Make sure that all "standard-pre" jobs can start simultaneously, + # so that runners are available by the time that "default" starts. + max_parallel: 50 standard: if: ${{ success() || failure() }} From 35910e2fa72e4b50fc7c30f14da417879b22ae52 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Wed, 1 Nov 2023 10:55:53 -0700 Subject: [PATCH 2/2] .github/workflows/ci-linux.yml: Reduce 'standard', 'minimal-pre' to 25 parallel jobs --- .github/workflows/ci-linux.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index cbb4f0dd4ce..374824d83ab 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -104,6 +104,8 @@ jobs: tox_packages_factors: >- ["standard"] docker_push_repository: ghcr.io/${{ github.repository }}/ + # Reduce from 30 to 25 because it runs in parallel with 'standard-sitepackages' below + max_parallel: 25 standard-sitepackages: if: ${{ success() || failure() }} @@ -167,6 +169,8 @@ jobs: tox_packages_factors: >- ["minimal"] docker_push_repository: ghcr.io/${{ github.repository }}/ + # Reduce from 30 to 25 because it may run in parallel with 'standard-sitepackages' above + max_parallel: 25 minimal: if: ${{ success() || failure() }}