This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 34f56154c268fb18914c22c62f2f59711e0de150 Author: jcouteau <couteau@codelutin.com> Date: Wed Sep 25 17:18:51 2019 +0200 Clean runner after execution --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5359e06e..cccf024e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,13 +9,14 @@ build:compile-only: when: manual script: - mvn clean package -Dmaven.test.skip + - rm * .git* -rf || true build:with-tests: image: registry.nuiton.org/codelutin/dockerfiles:maven-release stage: build script: - mvn clean package - - rm * .git* -rf + - rm * .git* -rf || true except: - /^master.*$/ - /^release\/.*$/ @@ -26,6 +27,7 @@ check-releasable: stage: check-releasable script: - mvn clean verify -e -U -DperformRelease -Dredmine.skipGenerateChanges -Dmaven.javadoc.skip + - rm * .git* -rf || true only: - /^develop.*$/ except: @@ -37,5 +39,6 @@ sonar_job: script: - export MAVEN_OPTS="-Xmx1024m" - mvn -e -U clean verify -DskipRelease org.sonarsource.scanner.maven:sonar-maven-plugin:3.6.1.1688:sonar -Dsonar.host.url=https://qa.codelutin.com -Dsonar.projectKey=com.franciaflex:faxtomail -Dsonar.exclusions='**/faxtomail-ui-swing/**/*.css','**/js/libs/*','**/target/*','**/generated*/*' + - rm * .git* -rf || true only: - schedules -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.