ci: throttle Axom CI matrix concurrency #1604
Open
+2
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request: Throttle Parallel Jobs in Axom CI Matrix
Description
This PR introduces
max-parallellimits to two key workflows in the Axom CI pipeline:.github/workflows/ci-tests.ymlLimits simultaneous matrix jobs to 5.
.github/workflows/test_windows_tpls.ymlCaps concurrent Windows TPL builds at 2.
These changes ensure that our build runners aren’t overwhelmed by large matrices all at once, improving overall throughput and predictability.
Why This Matters
Without a cap on parallel matrix jobs, a single commit on Axom’s main branch can spin up dozens of containers simultaneously. LLNL has about 20 runners for all LLNL GitHub projects. In our current runner pool, that often leads to:
By throttling to a reasonable number of concurrent jobs, we:
Example Scenario
Verification Steps
By applying these caps, we’ll achieve steadier CI performance and faster feedback for all contributors.