diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a879beb..5505d76 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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" \ No newline at end of file