From 5803b910fa0ad92a6a3d878f6e603951ac38f088 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Sat, 26 Aug 2023 20:01:46 -0700 Subject: [PATCH] Use less threads on Linux --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index 2f554b7..37b503b 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -103,7 +103,7 @@ if [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then cd "$ROOT" cmake --preset vs - cmake --build --preset vs --config Release + cmake --build --preset vs --config Release -j 3 cd "$ROOT/ci/bin"