Skip to content

Commit 0a57a38

Browse files
author
Release Manager
committed
sagemathgh-36616: CI Linux: Increase max_parallel for `standard-pre`, decrease for `standard`, `minimal-pre` <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes sagemath#1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> <!-- Why is this change required? What problem does it solve? --> As proposed in sagemath#36610 (comment) <!-- If this PR resolves an open issue, please link to it here. For example "Fixes sagemath#12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - sagemath#12345: short description why this is a dependency - sagemath#34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: sagemath#36616 Reported by: Matthias Köppe Reviewer(s): Kwankyu Lee
2 parents bd4cd62 + 35910e2 commit 0a57a38

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci-linux.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ jobs:
8383
tox_packages_factors: >-
8484
["standard"]
8585
docker_push_repository: ghcr.io/${{ github.repository }}/
86+
# Make sure that all "standard-pre" jobs can start simultaneously,
87+
# so that runners are available by the time that "default" starts.
88+
max_parallel: 50
8689

8790
standard:
8891
if: ${{ success() || failure() }}
@@ -101,6 +104,8 @@ jobs:
101104
tox_packages_factors: >-
102105
["standard"]
103106
docker_push_repository: ghcr.io/${{ github.repository }}/
107+
# Reduce from 30 to 25 because it runs in parallel with 'standard-sitepackages' below
108+
max_parallel: 25
104109

105110
standard-sitepackages:
106111
if: ${{ success() || failure() }}
@@ -164,6 +169,8 @@ jobs:
164169
tox_packages_factors: >-
165170
["minimal"]
166171
docker_push_repository: ghcr.io/${{ github.repository }}/
172+
# Reduce from 30 to 25 because it may run in parallel with 'standard-sitepackages' above
173+
max_parallel: 25
167174

168175
minimal:
169176
if: ${{ success() || failure() }}

0 commit comments

Comments
 (0)