expand CI

This commit is contained in:
Aidan Hahn 2019-06-01 13:09:01 -07:00
parent 71f806847a
commit 259a76eeb6
No known key found for this signature in database
GPG key ID: 327711E983899316
3 changed files with 21 additions and 6 deletions

View file

@ -1,6 +1,24 @@
image: java:8-jdk
stages:
- build
- test
- deploy
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
test:
script: "./buildwrapper.sh"
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"