ci: reduce sanitizer/valgrind worker count to avoid runner OOM#9280
Merged
daywalker90 merged 1 commit intoJul 6, 2026
Merged
Conversation
The ASan/UBSan and Valgrind shards intermittently have their hosted runner killed mid-run with "The runner has received a shutdown signal", surfaced as a mass test cancellation. The VM itself is being terminated, most likely from memory exhaustion: `-n $(nproc)+1` runs 5 parallel node-clusters and ASan roughly triples RSS, peaking past the 16GB hosted-runner ceiling on heavy shards (deterministic repro at ~10% on ASan/UBSan 3/6 due to the fixed --test-group-random-seed=42). Drop these two jobs to `-n $(nproc)` (one fewer worker) to lower peak memory, and add an `if: failure()` step that dumps OOM-related dmesg and kernel-log lines so the next failure records the actual cause. Changelog-None
Collaborator
|
Thank you for this, this was getting annoying. |
daywalker90
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #9279
-n $(nproc)+1runs 5 parallel node-clusters and ASan roughly triples RSS, peaking past the 16GB hosted-runner ceiling on heavy shards (deterministic repro at ~10% on ASan/UBSan 3/6 due to the fixed--test-group-random-seed=42).integration-valgrindandintegration-sanitizersto-n $(nproc)(one fewer worker) to lower peak memory.if: failure()step that dumps OOM-relateddmesgand kernel-log lines so the next failure records the actual cause.