Reduce stack size to prevent CI resource issues

This commit is contained in:
rishflab 2020-12-07 09:26:22 +11:00
parent e4eed7b1a5
commit b4ac69fa9c
2 changed files with 2 additions and 2 deletions

View File

@ -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: |

View File

@ -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() {