diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d82014b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +image: "ubuntu:latest" + +stages: + - build + - test + +before_script: + - apt update; apt-get install --yes --force-yes build-essential cmake + +build_cmake: + stage: build + script: + ./build_cmake_release.sh + artifacts: + paths: + - cmake-build-release/bin/ + +run_tests: + stage: test + script: + ./build_cmake_release.sh; ./cmake-build-release/bin/tests \ No newline at end of file