From cff050a1ed4f03a71a7ff3667f762c1e96fc6fde Mon Sep 17 00:00:00 2001 From: Walter Julius Hennecke Date: Sat, 21 Sep 2019 13:07:45 +0200 Subject: [PATCH] update ci config --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0b90e07..e4652d3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ build: - "mkdir cmake-build-debug" - "cd cmake-build-debug" - "cmake .." - - "cmake --build . --target common" + - "cmake --build . --target common -- -j 8" test: stage: test @@ -18,9 +18,9 @@ test: - "mkdir cmake-build-debug" - "cd cmake-build-debug" - "cmake .." - - "cmake --build . --target unittest_common" + - "cmake --build . --target unittest_common -- -j 8" - "./code/common/unittest_common -r junit -o results_common.xml" artifacts: reports: junit: - - cmake-build-debug/code/common/results_common.xml + - cmake-build-debug/results_common.xml