This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-matrix. See https://gitlab.nuiton.org/nuiton/nuiton-matrix.git commit 3a15b1193de4e69085ac283d28bd23fdf20213b4 Author: Éric Chatellier <chatellier@codelutin.com> Date: Thu Apr 12 15:56:44 2018 +0200 Ajout de .gitlab-ci.yml --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..84b3b78 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +stages: +- build +- reporting + +build: + stage: build + script: + - mvn clean install + +pages: + stage: reporting + only: + - master + artifacts: + paths: + - public + + script: + - mvn site -Preporting + - mv target/site public -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.