Update .gitlab-ci.yml

master
dragontamerfred 2019-10-04 23:05:15 +00:00
parent 7391eef0e8
commit 21ad306c68
1 changed files with 5 additions and 17 deletions

View File

@ -2,18 +2,16 @@ image: java:8-jdk
stages:
- build
- test
- deploy
before_script:
# - echo `pwd` # debug
# - echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug
- export GRADLE_USER_HOME=`pwd`/.gradle
- echo `pwd` # debug
- echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug
- export GRADLE_USER_HOME=`pwd`/gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
- gradle/wrapper
- gradle/caches
build:
stage: build
@ -26,15 +24,5 @@ build:
only:
- master
test:
stage: test
script:
- ./gradlew check
deploy:
stage: deploy
script:
- ./deploy
after_script:
- echo "End CI"