This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit c35d1eedc73c8a91e5d12434809f23a67110e14e Author: Brendan Le Ny <bleny@codelutin.com> Date: Wed Sep 18 17:43:17 2019 +0200 Minimum viable gitlab CI --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..eeaa38ad --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +maven: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release + stage: build + script: mvn --batch-mode clean package + except: + - master + - /^release/.*$/ + artifacts: + paths: + - ./*/target/*.war + expire_in: 2 weeks + +maven-verify: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release + stage: check-can-release + script: mvn --batch-mode clean verify -DperformRelease + only: + - develop -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.