This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-profiling. See https://gitlab.nuiton.org/nuiton/nuiton-profiling.git commit 98d18be063e8b5124271c9ea776441afb599bd94 Author: Eric Chatellier <chatellier@codelutin.com> Date: Thu Jul 30 14:21:08 2020 +0200 Add gitlab ci --- .gitlab-ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2f8ea56 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +image: registry.nuiton.org/codelutin/dockerfiles:maven-release + +stages: + - build + - deploy + - reporting + +build: + stage: build + script: + - mvn install + +snapshot: + stage: deploy + script: + - mvn deploy + +pages: + stage: reporting + only: + - master + artifacts: + paths: + - public + script: + - mvn site:site site:stage -Preporting + - mv target/staging/nuitonpom/nuiton-profiling public \ No newline at end of file -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.