From 054e896f70c879e993ee10fe2fa13d272d9e6062 Mon Sep 17 00:00:00 2001 From: Bossanyi Tibor <1-bossanyit@users.noreply.andio.club> Date: Tue, 5 May 2020 17:22:10 +0000 Subject: [PATCH] add CI gitlab-ci.yml --- .gitlab-ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bc9b927 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,40 @@ +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 + +cache: + paths: + - .gradle/wrapper + - .gradle/caches + +build: + stage: build + script: + - ./gradlew assemble + artifacts: + paths: + - build/libs/*.jar + expire_in: 1 week + only: + - master + +test: + stage: test + script: + - ./gradlew check + +deploy: + stage: deploy + script: + - ./deploy + +after_script: + - echo "End CI" \ No newline at end of file