From 9714323e36e892940203e821976e862f481682fb Mon Sep 17 00:00:00 2001 From: Hendrik Tews Date: Fri, 8 Mar 2024 11:13:25 +0100 Subject: [PATCH] CI: do not artificially restrict parallel test execution For whatever reason, the test job always runs late in a CI run (I am blaming the max-parallel annotation for this). This leads to longer CI runs, because, at the end, for several rounds on 6 instances of the test job are executing. Note that Github starts at most 20 of our tests in parallel, so it is not our responsibility to ensure that limit. --- .github/workflows/test.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79eef69cb..47f859330 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,9 +38,6 @@ jobs: - 29.1 - 29.2 # CIPG change marker end - # at most 20 concurrent jobs per free account - # cf. https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#usage-limit - max-parallel: 4 # don't cancel all in-progress jobs if one matrix job fails: fail-fast: false @@ -142,9 +139,6 @@ jobs: - coq-8.19-emacs-29.1 - coq-8.19-emacs-29.2 # CIPG change marker end - # at most 20 concurrent jobs per free account - # cf. https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#usage-limit - max-parallel: 6 # don't cancel all in-progress jobs if one matrix job fails: fail-fast: false @@ -335,7 +329,6 @@ jobs: - 29.1 - 29.2 # CIPG change marker end - max-parallel: 4 # don't cancel all in-progress jobs if one matrix job fails: fail-fast: false @@ -371,7 +364,6 @@ jobs: - 29.1 - 29.2 # CIPG change marker end - max-parallel: 4 # don't cancel all in-progress jobs if one matrix job fails: fail-fast: false