EntityComponentMetaSystem/.gitlab-ci.yml

21 lines
335 B
YAML
Raw Normal View History

2016-03-18 15:23:36 +00:00
image: seo.disparate/gcc-runner:latest
2016-03-18 15:14:55 +00:00
2016-03-17 08:43:31 +00:00
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