cmdlineoptions/.gitlab-ci.yml

17 lines
182 B
YAML
Raw Normal View History

2016-03-27 20:26:54 +02:00
image: gcc:latest
stages:
- build
- test
build-c:
stage: build
script:
- cd c; make
test-c:
stage: test
script:
- cd c; make test
2016-03-27 20:32:43 +02:00
dependencies:
- build-c