From: Stephen Seo Date: Thu, 17 Mar 2016 08:43:31 +0000 (+0900) Subject: added .gitlab-ci.yml X-Git-Tag: 1.0~100 X-Git-Url: https://git.seodisparate.com/stephenseo/css/solid.min.css?a=commitdiff_plain;h=d32afaa99955a4f4aebca8e6e52e727cc4ef4a1a;p=EntityComponentMetaSystem added .gitlab-ci.yml --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..287149b --- /dev/null +++ b/.gitlab-ci.yml @@ -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 +