summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 343967289c847979cf2e5e278d88c7949c539aa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: ruby:2.5

build:
  stage: build
  script:
  - mkdir build
  - cd build
  - cmake ..
  - make -j4
  artifacts:
    paths:
    - build

test:
  stage: test
  script:
  - cd tests
  - PATH=../build/tools/hscript-validate:$PATH rspec spec/validator.rb