Skip to content

Commit 3d5d94c

Browse files
secupclaude
andcommitted
ci: cap Linux/macOS test build at --parallel 2 — ubuntu runner OOM-killed cc1plus on two concurrent heavy test TUs (run 28916672556)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019btwFxDt7D19SZSqPYvZnk
1 parent 8c3c67c commit 3d5d94c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build-matrix.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,11 @@ jobs:
136136
137137
- name: Build Tests (Linux/macOS)
138138
if: runner.os != 'Windows'
139-
run: cmake --build build --parallel
139+
# --parallel 2: the ubuntu runner (2 vCPU / ~7 GB) OOM-kills cc1plus
140+
# when two heavy test TUs build concurrently (test_watterson_proof +
141+
# test_ofdm_snr_calibration, each compiling the full streaming-decoder
142+
# set — 2026-07-08 run 28916672556). Same bound as the sanitizer job.
143+
run: cmake --build build --parallel 2
140144

141145
- name: Build Tests (Windows)
142146
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)