mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Trigger CI pipelines on gitlab
This commit is contained in:
parent
6def4a10a0
commit
3cb35ffd7c
24
.gitlab-ci.yml
Normal file
24
.gitlab-ci.yml
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user