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"