summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 343967289c847979cf2e5e278d88c7949c539aa4 (plain) (tree)
1
2
3
4
5
6
7
8







               



            






                                                                      
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