cmdlineoptions/.gitlab-ci.yml

20 lines
241 B
YAML

image: gcc:latest
stages:
- build
build-c:
stage: build
script:
- cd c; make
artifacts:
paths:
- libcmdlineoptions.*
- tests-*
test-c:
stage: test
script:
- cd c; make test
dependencies:
- build-c