mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-16 00:46:03 +08:00
24 lines
342 B
YAML
24 lines
342 B
YAML
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 |