ocarina/.gitlab-ci.yml

15 lines
209 B
YAML

stages:
- build
- test
build:
stage: build
script:
- cmake -DCONFIG_DEBUG=ON && make
test:
stage: test
script:
- cmake -DCONFIG_TESTING_VERBOSE=ON -DCONFIG_TESTING_GUI=OFF && make tests