You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by po...@apache.org on 2019/05/10 22:24:38 UTC

[incubator-tamaya-sandbox] branch master updated: TAMAYA-277: Do not fail build in case of Sonar errors

This is an automated email from the ASF dual-hosted git repository.

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tamaya-sandbox.git


The following commit(s) were added to refs/heads/master by this push:
     new 6501847  TAMAYA-277: Do not fail build in case of Sonar errors
6501847 is described below

commit 65018476fa53679cdf696c5c3a12946ef3b59e36
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Sat May 11 00:24:20 2019 +0200

    TAMAYA-277: Do not fail build in case of Sonar errors
---
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index d4b0fff..b7117a6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,8 @@ jobs:
     include:
         - name: "Java 8"
           jdk: openjdk8
-          script: mvn clean install sonar:sonar -Dsonar.organization=apache -Dsonar.projectKey=apache_incubator-tamaya-sandbox
+          script: mvn clean install
+          after_success: mvn sonar:sonar -Dsonar.organization=apache -Dsonar.projectKey=apache_incubator-tamaya-sandbox
 
         - name: "Java 9"
           jdk: openjdk9