ocarina/.gitlab-ci.yml

15 lines
142 B
YAML
Raw Normal View History

stages:
- build
- test
build:
stage: build
script:
- cmake . && make
test:
stage: test
script:
- cmake . && make tests