added .gitlab-ci.yml
This commit is contained in:
parent
a008830373
commit
d32afaa999
1 changed files with 18 additions and 0 deletions
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
stages:
|
||||
- build
|
||||
- test
|
||||
|
||||
buildJob:
|
||||
stage: build
|
||||
script:
|
||||
- mkdir buildDebug
|
||||
- cd buildDebug
|
||||
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=True ../src
|
||||
- make
|
||||
|
||||
testJob:
|
||||
stage: test
|
||||
script:
|
||||
- cd buildDebug
|
||||
- ./UnitTests
|
||||
|
Loading…
Reference in a new issue