cmdlineoptions/.gitlab-ci.yml

31 lines
469 B
YAML
Raw Normal View History

2016-04-18 18:07:00 +02:00
image: archlinux_gcc5.3_qt5
stages:
- build
build-c:
stage: build
script:
- cd c; make
artifacts:
paths:
- c/libcmdlineoptions.*
- c/tests-*
build-cpp:
stage: build
script:
- cd cpp; mkdir build; cd build
- cmake ..
- make
artifacts:
paths:
- cpp/build/libCmdLineOptions.so
- cpp/build/libCmdLineOptions_static.a
#test-c:
#stage: test
#script:
#- cd c; make test
#dependencies:
#- build-c