From 9af8ab3028a01e4aa03b13351324049c0e5d60df Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 18 Dec 2020 11:39:46 +1100 Subject: [PATCH] Increase stack size to 16MB Default is 8MB. As we start both Alice and bob in test, it is fine to double the stack size but still assume it does not impact the normal execution of the binary. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7118f59..66e22cf3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,7 +105,7 @@ jobs: run: cargo +nightly test --workspace --all-features -- -Z unstable-options --report-time env: MONERO_ADDITIONAL_SLEEP_PERIOD: 60000 - RUST_MIN_STACK: 10000000 + RUST_MIN_STACK: 16777216 # 16 MB. Default is 8MB. This is fine as in tests we start 2 programs: Alice and Bob. - name: Build binary run: |