branch develop updated (f233b23 -> 54573d1)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository i18n. See https://gitlab.nuiton.org/nuiton/i18n.git from f233b23 Make I18nTest compatible with Java9+ at runtime new 54573d1 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 54573d1487b90de0d8017aa50f79aef99007514e Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:58:51 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 i18n. See https://gitlab.nuiton.org/nuiton/i18n.git commit 54573d1487b90de0d8017aa50f79aef99007514e Author: Arnaud Thimel <thimel@codelutin.com> Date: Fri Sep 20 21:58:51 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 nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm