cmdlineoptions/.gitlab-ci.yml

20 lines
260 B
YAML

image: gcc:latest
stages:
- build
build-c:
stage: build
script:
- cd c; make
artifacts:
paths:
- libcmdlineoptions.so
- libcmdlineoptions.a
#test-c:
#stage: test
#script:
#- cd c; make test
#dependencies:
#- build-c