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 f7c26d0f1a1f08b5661eb6144c8477dc185f42dc Author: Duo Zhang <[email protected]> AuthorDate: Sat Feb 28 00:11:15 2026 +0800 fix --- dev-support/integration-test.Jenkinsfile | 39 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/dev-support/integration-test.Jenkinsfile b/dev-support/integration-test.Jenkinsfile index 0c65ab5a543..edec5597101 100644 --- a/dev-support/integration-test.Jenkinsfile +++ b/dev-support/integration-test.Jenkinsfile @@ -341,27 +341,26 @@ pipeline { } post { always { + sshPublisher(publishers: [ + sshPublisherDesc(configName: 'Nightlies', + transfers: [ + sshTransfer(remoteDirectory: "hbase/${JOB_NAME}/${BUILD_NUMBER}", + sourceFiles: "output-srctarball/hbase-src.tar.gz" + ) + ] + ) + ]) + sh '''#!/bin/bash -e + SRC_TAR="${WORKSPACE}/output-srctarball/hbase-src.tar.gz" + if [ -f "${SRC_TAR}" ]; then + echo "Remove ${SRC_TAR} for saving space" + rm -rf "${SRC_TAR}" + python3 ${BASEDIR}/dev-support/gen_redirect_html.py "${ASF_NIGHTLIES_BASE}/output-srctarball" > "${WORKSPACE}/output-srctarball/hbase-src.html" + else + echo "No hbase-src.tar.gz, skipping" + fi + ''' script { - sshPublisher(publishers: [ - sshPublisherDesc(configName: 'Nightlies', - transfers: [ - sshTransfer(remoteDirectory: "hbase/${JOB_NAME}/${BUILD_NUMBER}", - sourceFiles: "output-srctarball/hbase-src.tar.gz" - ) - ] - ) - ]) - sh '''#!/bin/bash -e - SRC_TAR="${WORKSPACE}/output-srctarball/hbase-src.tar.gz" - if [ -f "${SRC_TAR}" ]; then - echo "Remove ${SRC_TAR} for saving space" - rm -rf "${SRC_TAR}" - python3 ${BASEDIR}/dev-support/gen_redirect_html.py "${ASF_NIGHTLIES_BASE}/output-srctarball" > "${WORKSPACE}/output-srctarball/hbase-src.html" - else - echo "No hbase-src.tar.gz, skipping" - fi - ''' - def results = [] results.add('output-srctarball/commentfile') results.add("output-integration-hadoop-${env.HADOOP_VERSION}/commentfile")
