We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10eddf commit 91d870eCopy full SHA for 91d870e
.github/workflows/pr-tests.yml
@@ -17,6 +17,7 @@ env:
17
CARGO_TERM_COLOR: always
18
POWDR_GENERATE_PROOFS: "true"
19
MAX_DEGREE_LOG: "20"
20
+ RUST_MIN_STACK: "1073741824"
21
22
jobs:
23
build:
@@ -234,6 +235,8 @@ jobs:
234
235
- name: Install pilcom
236
run: git clone https://github.com/0xPolygonHermez/pilcom.git && cd pilcom && npm install
237
- uses: taiki-e/install-action@nextest
238
+ - name: Increase Stack Size
239
+ run: ulimit -s 32768
240
- name: Run slow tests
241
# Number threads is set to 2 because the runner does not have enough memory for more.
242
run: |
0 commit comments