cmdlineoptions/.gitlab-ci.yml

20 lines
241 B
YAML
Raw Normal View History

2016-03-27 20:26:54 +02:00
image: gcc:latest
stages:
- build
build-c:
stage: build
script:
- cd c; make
2016-03-27 20:43:15 +02:00
artifacts:
2016-03-27 20:45:51 +02:00
paths:
- libcmdlineoptions.*
- tests-*
2016-03-27 20:26:54 +02:00
test-c:
stage: test
script:
- cd c; make test
2016-03-27 20:32:43 +02:00
dependencies:
- build-c