Skip to content

Commit 7cb68e2

Browse files
committed
CI: increase stack size for test runner to prevent stack overflow
1 parent 6a0ad3b commit 7cb68e2

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,18 @@ jobs:
8888
uses: leanprover/lean-action@v1
8989
with:
9090
use-github-cache: false
91+
build: false
9192
test: false
93+
- name: Build Strata
94+
shell: bash
95+
run: |
96+
ulimit -s 65536
97+
lake build
9298
- name: Run tests (excluding Python)
93-
run: lake test -- --exclude Languages.Python
99+
shell: bash
100+
run: |
101+
ulimit -s 65536
102+
lake test -- --exclude Languages.Python
94103
- name: Save lake cache
95104
uses: actions/cache/save@v5
96105
with:

0 commit comments

Comments
 (0)