This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coser. See https://gitlab.nuiton.org/codelutin/coser.git commit 66be6fcdab840103d39146e633a8f53ee0a75ef4 Author: Éric Chatellier <chatellier@codelutin.com> Date: Mon Apr 9 15:58:49 2018 +0200 Ajout de .gitlab-ci.yml --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e85a969 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +variables: + SONAR_URL: "https://sonar.nuiton.org" + +stages: + - build + - report + +build: + image: registry.nuiton.org/codelutin/dockerfiles:debian-dev-java8 + stage: build + script: + - mvn install + +sonarqube: + image: registry.nuiton.org/codelutin/dockerfiles:debian-dev-java8 + stage: report + script: + - mvn compile sonar:sonar -Dsonar.host.url=$SONAR_URL -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.