Updated .gitlab-ci.yml
This commit is contained in:
parent
d984d2cde9
commit
0cdd86bde8
1 changed files with 3 additions and 4 deletions
|
@ -1,15 +1,11 @@
|
||||||
image: seo.disparate/gcc-runner:latest
|
image: seo.disparate/gcc-runner:latest
|
||||||
|
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- test
|
- test
|
||||||
|
|
||||||
buildJob:
|
buildJob:
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- buildDebug/
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
script:
|
script:
|
||||||
|
@ -23,6 +19,9 @@ testJob:
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
script:
|
script:
|
||||||
|
- mkdir -p buildDebug
|
||||||
- cd buildDebug
|
- cd buildDebug
|
||||||
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=True ../src
|
||||||
|
- make
|
||||||
- ./UnitTests
|
- ./UnitTests
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue