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

zhangduo pushed a commit to branch HBASE-29930
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit e27494bd774dbde9bd391b8849054da815e92fbb
Author: Duo Zhang <[email protected]>
AuthorDate: Sat Feb 28 18:32:36 2026 +0800

    add comment
---
 .../integration-test/integration-test.Jenkinsfile  | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/dev-support/integration-test/integration-test.Jenkinsfile 
b/dev-support/integration-test/integration-test.Jenkinsfile
index 3361b2b4d5a..302e40640be 100644
--- a/dev-support/integration-test/integration-test.Jenkinsfile
+++ b/dev-support/integration-test/integration-test.Jenkinsfile
@@ -87,19 +87,21 @@ pipeline {
         '''
         echo "make sure we have proper hbase tarballs under hbase-assembly"
         sh '''#!/bin/bash -e
+          ls 
"${WORKSPACE}"/unpacked_src_tarball/hbase-assembly/target/hbase-*-bin.tar.gz
           if [ 2 -ne $(ls -1 
"${WORKSPACE}"/unpacked_src_tarball/hbase-assembly/target/hbase-*-bin.tar.gz | 
grep -v hadoop3 | wc -l) ]; then
             echo '(x) {color:red}-1 testing binary artifact{color}\n-- source 
tarball did not produce the expected binaries.' >>output-srctarball/commentfile
-          exit 1
-        fi
-        if [[ "${BRANCH_NAME}" == *"branch-2"* ]]; then
-          if [ 2 -eq $(ls -1 
"${WORKSPACE}"/unpacked_src_tarball/hbase-assembly/target/hbase-*-hadoop3-*-bin.tar.gz
 | wc -l) ]; then
-             echo '(x) {color:red}-1 testing binary artifact{color}\n-- source 
tarball did not produce the expected hadoop3 binaries.' 
>>output-srctarball/commentfile
+            exit 1
           fi
-        fi
-      '''
-      stash name: 'hbase-install', includes: 
"${env.WORKSPACE}/unpacked_src_tarball/hbase-assembly/target/hbase-*-bin.tar.gz"
-    }
-  }
+          if [[ "${BRANCH_NAME}" == *"branch-2"* ]]; then
+            if [ 2 -eq $(ls -1 
"${WORKSPACE}"/unpacked_src_tarball/hbase-assembly/target/hbase-*-hadoop3-*-bin.tar.gz
 | wc -l) ]; then
+               echo '(x) {color:red}-1 testing binary artifact{color}\n-- 
source tarball did not produce the expected hadoop3 binaries.' 
>>output-srctarball/commentfile
+               exit 1
+            fi
+          fi
+        '''
+        stash name: 'hbase-install', includes: 
"${env.WORKSPACE}/unpacked_src_tarball/hbase-assembly/target/hbase-*-bin.tar.gz"
+      } // steps
+    } // packaing test
   } // stages
   post {
     always {

Reply via email to