Select Git revision
gradlew.bat
-
Johannes Mey authoredJohannes Mey authored
.gitlab-ci.yml NaN GiB
image: java:8-jdk
stages:
- build
- test
- deploy
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
- chmod u+x ./gradlew
cache:
paths:
- .gradle/wrapper
- .gradle/caches
build:
stage: build
script:
- ./gradlew assemble
only:
- master
test:
stage: test
script:
- ./gradlew check
deploy:
script:
- ./gradlew publish
only:
- master