You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2018/10/23 11:31:52 UTC

[incubator-plc4x] branch master updated: - Skip the sonar step as we are currently having auth issues with Sonar on ASF infra.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8481ef9  - Skip the sonar step as we are currently having auth issues with Sonar on ASF infra.
8481ef9 is described below

commit 8481ef93497361463ea29f64b94213d917f8fef1
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Oct 23 12:31:47 2018 +0100

    - Skip the sonar step as we are currently having auth issues with Sonar on ASF infra.
---
 Jenkinsfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 06540c8..8e839b0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -117,7 +117,8 @@ pipeline {
             }
         }
 
-        stage('Code Quality') {
+        // Disabled till auth issues are resolved on infra.
+        /*stage('Code Quality') {
             when {
                 branch 'master'
             }
@@ -131,7 +132,7 @@ pipeline {
                 echo 'Building'
                 sh 'mvn -P${JENKINS_PROFILE} sonar:sonar'
             }
-        }
+        }*/
 
         stage('Deploy') {
             when {