Increase Rust minimum stack size in CI

pull/16/head
Lucas Soriano del Pino 4 years ago
parent 5250e16b64
commit e5ddec76f7

@ -76,4 +76,6 @@ jobs:
- name: Cargo test
run: cargo test --workspace --all-features
env:
# To avoid stack overflows
RUST_MIN_STACK: 100000000
MONERO_ADDITIONAL_SLEEP_PERIOD: 60000

@ -142,6 +142,11 @@ pub async fn init_test<'a>(
}
mod tests {
// NOTE: For some reason running these tests overflows the stack. In order to
// mitigate this run them with:
//
// RUST_MIN_STACK=100000000 cargo test
use crate::{
harness,
harness::node::{run_alice_until, run_bob_until},

Loading…
Cancel
Save