From 3cb35ffd7c75c9aeefa600a0621f7afa63169494 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sun, 4 Nov 2018 10:10:50 +0000 Subject: [PATCH] Trigger CI pipelines on gitlab --- .gitlab-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..580aa237 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +image: rikorose/gcc-cmake + +variables: + GIT_SUBMODULE_STRATEGY: recursive + GIT_STRATEGY: clone + +stages: + - build + - test + +Build ETL: + stage: build + script: + - cmake -DBUILD_TESTS=ON ./ + - make + artifacts: + paths: + - ./test/etl_tests + +Run ETL tests: + stage: test + dependencies: + - Build ETL + script: ./test/etl_tests \ No newline at end of file