Skip to content

Commit f096f6b

Browse files
authored
Increase timeouts in CI (#1025)
The timeout limits for our CI tests are tight. Depending on the state of the github runners, our CI often fails with just a few more minutes needed. I have noticed test runs being cancelled while making progress, at 90% + (even just after the test have been completed). It would be better to have them be more generous, as having to rerun jobs cancelled due to this is actually leading to more time on the runners.
1 parent 2bc8a16 commit f096f6b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,23 @@ jobs:
6161
- name: 'LLVM Concrete Tests'
6262
test-args: '-k "llvm or test_run_smir_random"'
6363
parallel: 12
64-
timeout: 30
64+
timeout: 60
6565
- name: 'Haskell Exec SMIR'
6666
test-args: '-k "test_exec_smir and haskell"'
6767
parallel: 6
6868
timeout: 60
6969
- name: 'Haskell Termination'
7070
test-args: '-k test_prove_termination'
7171
parallel: 6
72-
timeout: 20
72+
timeout: 60
7373
- name: 'Haskell Proofs'
7474
test-args: '-k "test_prove and not test_prove_termination"'
7575
parallel: 6
76-
timeout: 120
76+
timeout: 150
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
80-
timeout: 20
80+
timeout: 60
8181
steps:
8282
- name: 'Check out code'
8383
uses: actions/checkout@v4

0 commit comments

Comments
 (0)