Merge remote-tracking branch 'origin/development'

This commit is contained in:
John Wellbelove 2018-11-04 10:11:25 +00:00
commit 869219870f

24
.gitlab-ci.yml Normal file
View File

@ -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