branch develop updated (60cf1005 -> 44b91f8a)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git from 60cf1005 [jgitflow-maven-plugin]Updating develop poms back to pre merge state new 44b91f8a 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 44b91f8ae53cfc13af5bcf92d06920a193362aef Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:58:22 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 nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git commit 44b91f8ae53cfc13af5bcf92d06920a193362aef Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:58:22 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 00000000..f8f2199d --- /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 nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm