branch develop updated (95aca98 -> b4cc41d)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository bow. See https://gitlab.nuiton.org/chorem/bow.git from 95aca98 tout debut pour aurore (rien ne marche) new b4cc41d Setup .gitlab-ci.yml The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit b4cc41de7351ec07f5dc287c9f9e2c4787326ab8 Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:45:34 2019 +0200 Setup .gitlab-ci.yml Summary of changes: .gitlab-ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitlab-ci.yml -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See https://gitlab.nuiton.org/chorem/bow.git commit b4cc41de7351ec07f5dc287c9f9e2c4787326ab8 Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:45:34 2019 +0200 Setup .gitlab-ci.yml --- .gitlab-ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f8f2199 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,35 @@ +stages: +- build +- check-can-release +- qa + +# Pour les branches +maven: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release-debian9-openjdk8-with-frequent-libraries + stage: build + script: mvn --batch-mode clean package + except: + - master + - develop + - /^release/.*$/ + - schedules + +# Sur develop, on vérifie que c'est releasable +maven-verify: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release-debian9-openjdk8-with-frequent-libraries + stage: check-can-release + script: mvn --batch-mode clean verify -DperformRelease + only: + - develop + except: + - schedules + +# Sonar uniquement si planifié +sonar: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release-debian9-openjdk8-with-frequent-libraries + stage: qa + script: + - mvn clean package org.sonarsource.scanner.maven:sonar-maven-plugin:3.6.1.1688:sonar -Dsonar.host.url="https://qa.codelutin.com" + only: + - schedules + -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm