blob: 5020ca8e7b891693e79219bca75933e4d522bfcb (
plain) (
tree)
|
|
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
|