From 7aac016a0e4497413299cce70c4e451a31ccfdbe Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Sat, 10 Jun 2017 04:34:52 +0200 Subject: [PATCH] CircleCi/CodeCov: Don't use multiple threads for the DMD testsuite --- circleci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circleci.sh b/circleci.sh index f9c40461b0c0..438e9447f150 100755 --- a/circleci.sh +++ b/circleci.sh @@ -114,7 +114,7 @@ coverage() make -j$N -C src -f posix.mak MODEL=$MODEL HOST_DMD=../_${build_path}/host_dmd clean make -j$N -C src -f posix.mak MODEL=$MODEL HOST_DMD=../_${build_path}/host_dmd ENABLE_COVERAGE=1 - make -j$N -C test MODEL=$MODEL ARGS="-O -inline -release" DMD_TEST_COVERAGE=1 + make -j1 -C test MODEL=$MODEL ARGS="-O -inline -release" DMD_TEST_COVERAGE=1 } codecov()