fix test and deploy stages

This commit is contained in:
Aidan Hahn 2019-06-01 13:49:56 -07:00
parent 0b8cf633ee
commit 5871e1b152
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -17,8 +17,13 @@ compile:
tests:
stage: test
script: "./gradlew test"
script:
- "./certs-gen.sh"
- "./gradlew test"
package:
stage: deploy
script: "./package.sh"
script:
- "./certs-gen.sh"
- "./gradlew build"
- "./package.sh"