This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See https://gitlab.nuiton.org/codelutin/coselmar.git commit 20dd7c92900fbca3ba5027a918bde9bf8f57c92d Author: Yannick Martel <martel@©odelutin.com> Date: Tue Apr 9 11:09:50 2019 +0200 add gitlab-ci conf --- .gitlab-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c6e4a9a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +stages: +- build +- check-releasable + +build:latest: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release-debian9-openjdk8-with-frequent-libraries + stage: build + except: + - tags + script: + - mvn package + artifacts: + paths: + - coselmar-bundle/target/coselmar-*.war + expire_in: 2 weeks + +daily-check-releasable: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release-debian9-openjdk8-with-frequent-libraries + stage: check-releasable + script: + - mvn clean verify -e -U -DperformRelease -Dredmine.skipGenerateChanges -Dmaven.javadoc.skip + - rm * .git* -rf + only: + - schedules -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.