summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 5020ca8e7b891693e79219bca75933e4d522bfcb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                      
image: ruby:2.5

build:
  stage: build
  script:
  - mkdir build
  - cd build
  - cmake ..
  - make -j

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