From b4ac69fa9c0cdc3b36d77ddf9ea1e0ed2fc9545a Mon Sep 17 00:00:00 2001 From: rishflab Date: Mon, 7 Dec 2020 09:26:22 +1100 Subject: [PATCH] Reduce stack size to prevent CI resource issues --- .github/workflows/ci.yml | 2 +- swap/tests/e2e.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0602667f..e73e99a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,7 @@ jobs: run: cargo test --workspace --all-features env: MONERO_ADDITIONAL_SLEEP_PERIOD: 60000 - RUST_MIN_STACK: 100000000000 + RUST_MIN_STACK: 10000000 - name: Build binary run: | diff --git a/swap/tests/e2e.rs b/swap/tests/e2e.rs index 1c94acb0..d7cdc950 100644 --- a/swap/tests/e2e.rs +++ b/swap/tests/e2e.rs @@ -13,7 +13,7 @@ use testcontainers::clients::Cli; use uuid::Uuid; use xmr_btc::{bitcoin, config::Config, cross_curve_dleq}; -/// Run the following tests with RUST_MIN_STACK=100000000000 +/// Run the following tests with RUST_MIN_STACK=10000000 #[tokio::test] async fn happy_path() {