jobserv/.gitlab-ci.yml
2019-06-01 13:09:01 -07:00

24 lines
327 B
YAML

image: java:8-jdk
stages:
- build
- test
- deploy
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
certs:
stage: build
script: "./certs-gen.sh"
compile:
stage: build
script: "./gradlew clean assemble"
tests:
stage: test
script: "./gradlew test"
package:
stage: deploy
script: "./package.sh"