From 46ce8f5bdd6f0ff0c0058e8d3278775c2b5c5602 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 27 Jul 2022 00:00:48 -0400 Subject: [PATCH] Enable threads on the non-`rr` jobs --- utilities/test_julia.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utilities/test_julia.sh b/utilities/test_julia.sh index 9c33660a..987100c2 100644 --- a/utilities/test_julia.sh +++ b/utilities/test_julia.sh @@ -67,8 +67,7 @@ if [[ "${USE_RR-}" == "rr" ]] || [[ "${USE_RR-}" == "rr-net" ]]; then else export JULIA_CMD_FOR_TESTS="${JULIA_BINARY}" export NCORES_FOR_TESTS="${JULIA_CPU_THREADS}" - # export JULIA_NUM_THREADS="${JULIA_CPU_THREADS}" # TODO: uncomment this line once we support running CI with threads - export JULIA_NUM_THREADS=1 # TODO: delete this line once we support running CI with threads + export JULIA_NUM_THREADS="${JULIA_CPU_THREADS}" # Run all tests; `--ci` asserts that networking is available export TESTS="all --ci"