You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/01/13 03:19:21 UTC

[iotdb] branch fix_jenkins1 created (now 22dbb78929)

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

haonan pushed a change to branch fix_jenkins1
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at 22dbb78929 Fix jenkins sonar report error

This branch includes the following new commits:

     new 22dbb78929 Fix jenkins sonar report error

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: Fix jenkins sonar report error

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch fix_jenkins1
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 22dbb789298d62c4a3871f846fe4507a5fb66c76
Author: HTHou <hh...@outlook.com>
AuthorDate: Fri Jan 13 11:18:59 2023 +0800

    Fix jenkins sonar report error
---
 Jenkinsfile | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 31f2dd3250..23b28677b8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -34,7 +34,7 @@ pipeline {
 
     tools {
         maven 'maven_3_latest'
-        jdk 'jdk_1.8_latest'
+        jdk 'jdk_11_latest'
     }
 
     options {
@@ -58,26 +58,26 @@ pipeline {
             }
         }
 
-        stage('Deploy site') {
-            when {
-                branch 'master'
-            }
-            // Only the nodes labeled 'git-websites' have the credentials to commit to the.
-            agent {
-                node {
-                    label 'git-websites'
-                }
-            }
-            steps {
-                // Publish the site with the scm-publish plugin.
-                sh 'mvn -P site -P compile-site -P compile-site-1.0 -P compile-site-0.13 -P compile-site-0.12 -P compile-site-0.11 -P compile-site-0.10 -P compile-site-0.9 -P compile-site-0.8 compile scm-publish:publish-scm -pl site'
-
-                // Clean up the snapshots directory (freeing up more space after deploying).
-                dir("target") {
-                    deleteDir()
-                }
-            }
-        }
+//         stage('Deploy site') {
+//             when {
+//                 branch 'master'
+//             }
+//             // Only the nodes labeled 'git-websites' have the credentials to commit to the.
+//             agent {
+//                 node {
+//                     label 'git-websites'
+//                 }
+//             }
+//             steps {
+//                 // Publish the site with the scm-publish plugin.
+//                 sh 'mvn -P site -P compile-site -P compile-site-1.0 -P compile-site-0.13 -P compile-site-0.12 -P compile-site-0.11 -P compile-site-0.10 -P compile-site-0.9 -P compile-site-0.8 compile scm-publish:publish-scm -pl site'
+//
+//                 // Clean up the snapshots directory (freeing up more space after deploying).
+//                 dir("target") {
+//                     deleteDir()
+//                 }
+//             }
+//         }
 
         stage('Build and UT') {
             when {