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: stages:
- build - build
- test
- deploy
before_script: before_script:
# - echo `pwd` # debug - echo `pwd` # debug
# - echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug - echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug
- export GRADLE_USER_HOME=`pwd`/.gradle - export GRADLE_USER_HOME=`pwd`/gradle
cache: cache:
paths: paths:
- .gradle/wrapper - gradle/wrapper
- .gradle/caches - gradle/caches
build: build:
stage: build stage: build
@ -26,15 +24,5 @@ build:
only: only:
- master - master
test:
stage: test
script:
- ./gradlew check
deploy:
stage: deploy
script:
- ./deploy
after_script: after_script:
- echo "End CI" - echo "End CI"