From 12df95007b48b25ea6a30c08c6818a8a5daf06d9 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 12 Nov 2019 21:17:23 +0100 Subject: [PATCH] only -j1 works it seems --- ci_scripts/run-rust-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_scripts/run-rust-test.sh b/ci_scripts/run-rust-test.sh index 3cbc06139..1c8de2869 100755 --- a/ci_scripts/run-rust-test.sh +++ b/ci_scripts/run-rust-test.sh @@ -5,7 +5,7 @@ set -ex export RUST_TEST_THREADS=1 export RUST_BACKTRACE=1 export RUSTFLAGS='--deny warnings' -export OPT="-j2 --target=$TARGET" +export OPT="-j1 --target=$TARGET" export OPT_RELASE="--release ${OPT}" export OPT_FFI_RELEASE="--manifest-path=deltachat-ffi/Cargo.toml --release"