You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2020/04/13 09:45:38 UTC

[incubator-iotdb] branch master updated: use double quotation to replace single quatation

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 29ca175  use double quotation to replace single quatation
     new c001966  Merge branch 'master' of github.com:apache/incubator-iotdb
29ca175 is described below

commit 29ca175cb0e1e7a53a5c55afba3ba87908e68912
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Mon Apr 13 17:45:02 2020 +0800

    use double quotation to replace single quatation
---
 Jenkinsfile | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f3e63e3..b33d331 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,7 +30,6 @@ pipeline {
     environment {
         // Testfails will be handled by the jenkins junit steps and mark the build as unstable.
         MVN_TEST_FAIL_IGNORE = '-Dmaven.test.failure.ignore=true'
-        SKIP_SITE = "'!site'"
     }
 
     tools {
@@ -118,7 +117,7 @@ pipeline {
                     // Then run the analysis
                     // 'my-sonarcloud-token' needs to be defined for this job and contains the user token
                     withCredentials([string(credentialsId: 'xiangdong-iotdb-sonarcloud-token', variable: 'SONAR_TOKEN')]) {
-                        sh 'mvn verify sonar:sonar -Dsonar.branch.name=master -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache_incubator-iotdb -Dsonar.login=${SONAR_TOKEN} -DskipTests -pl ${SKIP_SITE}'
+                        sh "mvn verify sonar:sonar -Dsonar.branch.name=master -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=apache -Dsonar.projectKey=apache_incubator-iotdb -Dsonar.login=${SONAR_TOKEN} -DskipTests -pl '!site'"
                     }
                 }
             }