From 9d261ddbdd2f656926f50a84baefb26a4d2f3ee7 Mon Sep 17 00:00:00 2001
From: Maurice <zimmnau@ilr.rwth-aachen.de>
Date: Tue, 25 Feb 2025 14:33:47 +0100
Subject: [PATCH] Increase number of cores for compilation

---
 .ci-scripts/build-integration-test.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci-scripts/build-integration-test.yml b/.ci-scripts/build-integration-test.yml
index 42e9e11a..3aa1d890 100644
--- a/.ci-scripts/build-integration-test.yml
+++ b/.ci-scripts/build-integration-test.yml
@@ -38,7 +38,7 @@ build-integration-test:
 
     ## "Build former called clean repo - now within UNICADO"
     - cmake -B build -S . --preset x64-linux-release --fresh # -DFIND_LIBRARIES_AS_PACKAGE=ON -DCMAKE_PREFIX_PATH=../libs >/dev/null
-    - cmake --build --preset x64-linux-release --target ${NAME_MODIFIED_TOOL} -j4 # Assume 4 cores
+    - cmake --build --preset x64-linux-release --target ${NAME_MODIFIED_TOOL} -j8 # Assume 4 cores
     - cd ${CI_PROJECT_DIR}/${DIR_UNICADO}
 
     ## Modify CMakeLists.txt to only configure ${DIR_DESIGN_EVALUATOR}
@@ -48,7 +48,7 @@ build-integration-test:
 
     ## "Build ${DIR_DESIGN_EVALUATOR} in unicado repo"
     - cmake -B build -S . --preset x64-linux-release --fresh
-    - cmake --build --preset x64-linux-release --target ${DIR_DESIGN_EVALUATOR} -j4
+    - cmake --build --preset x64-linux-release --target ${DIR_DESIGN_EVALUATOR} -j8
     - cd ${CI_PROJECT_DIR}/${DIR_UNICADO}
 
     ## Create project and copy into AD repo of UNICADO (Clean repo) if not existent
@@ -77,7 +77,7 @@ build-integration-test:
 
     ## Same game for so called "local" repo
     - cmake -B build -S . --preset x64-linux-release --fresh
-    - cmake --build --preset x64-linux-release --target ${NAME_MODIFIED_TOOL} -j4
+    - cmake --build --preset x64-linux-release --target ${NAME_MODIFIED_TOOL} -j8
 
     ## "Copy built ${DIR_DESIGN_EVALUATOR} from unicado repo to local repo"
     - if [ ! -d "${DIR_DESIGN_EVALUATOR}" ]; then cp -rf ${PATH_CLEAN_ADDITIONAL_SOFTWARE}/${DIR_DESIGN_EVALUATOR} .; fi
-- 
GitLab