cmdlineoptions/.gitlab-ci.yml

31 lines
432 B
YAML
Raw Normal View History

2016-03-27 20:26:54 +02:00
stages:
- build
build-c:
2016-04-18 20:30:41 +02:00
image: archlinux_gcc53_qt5_cmake
2016-03-27 20:26:54 +02:00
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:53:44 +02:00
- c/libcmdlineoptions.*
- c/tests-*
2016-03-27 20:26:54 +02:00
2016-04-19 07:43:19 +02:00
build-java:
image: archlinux_jdk8
stage: build
script:
- cd java
- gradle build
artifacts:
paths:
- java/build/libs/cmdlineoptions*.jar
2016-04-18 20:30:41 +02:00
2016-03-27 20:49:33 +02:00
#test-c:
#stage: test
#script:
#- cd c; make test
#dependencies:
#- build-c