Skip to content

Commit 09514b3

Browse files
Stevengreclaude
andauthored
ci: increase integration test timeouts (#1008)
## Summary - Increase **LLVM Concrete Tests** timeout from 20 → 30 minutes - Increase **Haskell Proofs** timeout from 60 → 120 minutes The Haskell Proofs job timed out at ~63% completion in PR #1007, and LLVM Concrete Tests also hit the 20-minute limit. The timeouts were set too tight for the current test suite size, especially after recent additions of float, ptr-cast, transmute, and volatile tests. These increases provide headroom for runner variability. ## Test plan - [ ] CI passes on this PR (only workflow file changed) - [ ] PR #1007 rebased on this branch no longer times out 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 443f9ad commit 09514b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: 'LLVM Concrete Tests'
6262
test-args: '-k "llvm or test_run_smir_random"'
6363
parallel: 12
64-
timeout: 20
64+
timeout: 30
6565
- name: 'Haskell Exec SMIR'
6666
test-args: '-k "test_exec_smir and haskell"'
6767
parallel: 6
@@ -73,7 +73,7 @@ jobs:
7373
- name: 'Haskell Proofs'
7474
test-args: '-k "test_prove and not test_prove_termination"'
7575
parallel: 6
76-
timeout: 60
76+
timeout: 120
7777
- name: 'Remainder'
7878
test-args: '-k "not llvm and not test_run_smir_random and not test_exec_smir and not test_prove_termination and not test_prove"'
7979
parallel: 6

0 commit comments

Comments
 (0)