cmdlineoptions/.gitlab-ci.yml

17 lines
182 B
YAML

image: gcc:latest
stages:
- build
- test
build-c:
stage: build
script:
- cd c; make
test-c:
stage: test
script:
- cd c; make test
dependencies:
- build-c