File: .gitlab-ci.yml

package info (click to toggle)
etlcpp 20.40.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 18,548 kB
  • sloc: cpp: 257,359; ansic: 10,566; sh: 1,730; asm: 301; python: 281; makefile: 24
file content (25 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
image: rikorose/gcc-cmake

variables:
  GIT_SUBMODULE_STRATEGY: recursive
  GIT_STRATEGY: clone

stages:
  - build
  - test

Build ETL:
  stage: build
  script:
    - git fetch --tags
    - cmake -DBUILD_TESTS=ON ./
    - make
  artifacts:
    paths: 
      - ./test/etl_tests

Run ETL tests:
  stage: test
  dependencies:
    - Build ETL
  script: ./test/etl_tests