Skip to content

Commit e525d56

Browse files
noahgiftclaude
andauthored
fix: increase workspace lib test timeout 25→30 min (cold cache timeout) (#738)
Five-Whys: GitHub badge red on main. 1. Why red? workspace-test failed on main at 10:43 2. Why failed? "timed out after 25 minutes" 3. Why timeout? PR #734 merge triggered fresh compile (no incremental cache) 4. Why no cache? First run on new commit, cold Docker container 5. Root cause: 25-min timeout too tight for cold-cache 75-crate workspace Fix: Bump to 30 min. Warm cache runs take ~20 min. Cold cache needs ~27 min. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cd1b691 commit e525d56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Workspace lib tests (25,300+)
4242
# Excluded: aprender-gpu (cuBLAS), aprender-cuda-edge (CUDA), aprender-compute (SIMD SIGSEGV at exit)
4343
run: cargo test --workspace --lib --exclude aprender-gpu --exclude aprender-cuda-edge --exclude aprender-compute
44-
timeout-minutes: 25
44+
timeout-minutes: 30
4545
- name: Compute tests (tolerate SIGSEGV at exit — all tests pass but harness crashes on cleanup)
4646
run: cargo test -p aprender-compute --lib 2>&1 | tee /tmp/compute-test.log; grep -q 'test result.*0 failed' /tmp/compute-test.log
4747
- name: Integration tests

0 commit comments

Comments
 (0)