2016-03-18 16:05:43 +00:00
|
|
|
image: seodisparate/gcc-runner
|
2016-03-18 15:14:55 +00:00
|
|
|
|
2016-03-17 08:43:31 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
|
|
|
|
buildJob:
|
|
|
|
stage: build
|
2016-03-18 15:27:21 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
2016-03-17 08:43:31 +00:00
|
|
|
script:
|
2016-03-18 15:47:04 +00:00
|
|
|
- mkdir -p buildDebug
|
2016-03-17 08:43:31 +00:00
|
|
|
- cd buildDebug
|
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=True ../src
|
|
|
|
- make
|
|
|
|
|
|
|
|
testJob:
|
|
|
|
stage: test
|
2016-03-18 15:27:21 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
2016-03-17 08:43:31 +00:00
|
|
|
script:
|
2016-03-18 15:53:40 +00:00
|
|
|
- mkdir -p buildDebug
|
2016-03-17 08:43:31 +00:00
|
|
|
- cd buildDebug
|
2016-03-18 15:53:40 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=True ../src
|
|
|
|
- make
|
2016-03-17 08:43:31 +00:00
|
|
|
- ./UnitTests
|
|
|
|
|