cmdlineoptions/.gitlab-ci.yml

20 lines
260 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:
2016-03-27 20:52:58 +02:00
- libcmdlineoptions.so
- libcmdlineoptions.a
2016-03-27 20:26:54 +02:00
2016-03-27 20:49:33 +02:00
#test-c:
#stage: test
#script:
#- cd c; make test
#dependencies:
#- build-c