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 +