update ci config

This commit is contained in:
Walter Julius Hennecke 2019-09-21 13:07:45 +02:00
parent f3b7cbffb3
commit cff050a1ed
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ build:
- "mkdir cmake-build-debug" - "mkdir cmake-build-debug"
- "cd cmake-build-debug" - "cd cmake-build-debug"
- "cmake .." - "cmake .."
- "cmake --build . --target common" - "cmake --build . --target common -- -j 8"
test: test:
stage: test stage: test
@ -18,9 +18,9 @@ test:
- "mkdir cmake-build-debug" - "mkdir cmake-build-debug"
- "cd cmake-build-debug" - "cd cmake-build-debug"
- "cmake .." - "cmake .."
- "cmake --build . --target unittest_common" - "cmake --build . --target unittest_common -- -j 8"
- "./code/common/unittest_common -r junit -o results_common.xml" - "./code/common/unittest_common -r junit -o results_common.xml"
artifacts: artifacts:
reports: reports:
junit: junit:
- cmake-build-debug/code/common/results_common.xml - cmake-build-debug/results_common.xml