EntityComponentMetaSystem/.gitlab-ci.yml
2016-03-17 17:43:31 +09:00

19 lines
295 B
YAML

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