rpgxef/.gitlab-ci.yml
Walter Julius Hennecke 5e6e09b7f4 update to ci file
2019-09-21 09:57:38 +02:00

20 lines
341 B
YAML

stages:
- build
- test
build:
stage: build
script:
- "mkdir cmake-build-debug"
- "cd cmake-build-debug"
- "cmake .."
- "cmake --build . --target common"
- "cmake --build . --target unittest_common"
test:
stage: test
dependencies:
- build
script:
- "cd cmake-build_debug"
- "./unittest_common"