This is an automated email from the ASF dual-hosted git repository. Apache9 pushed a commit to branch HBASE-30324 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit b218c3e1fb0a4348fabc4a2d736bf181bebef1da Author: Duo Zhang <[email protected]> AuthorDate: Sun Aug 9 23:17:15 2026 +0800 HBASE-30324 Uploading hbase-src.tar.gz is broken in integration test --- dev-support/integration-test/integration-test.Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-support/integration-test/integration-test.Jenkinsfile b/dev-support/integration-test/integration-test.Jenkinsfile index b17025ab642..c5d58818b8c 100644 --- a/dev-support/integration-test/integration-test.Jenkinsfile +++ b/dev-support/integration-test/integration-test.Jenkinsfile @@ -33,6 +33,7 @@ pipeline { environment { HADOOP_VERSIONS = "2.10.2,3.2.4,3.3.5,3.3.6,3.4.0,3.4.1,3.4.2,3.4.3" BASEDIR = "${env.WORKSPACE}/component" + ASF_NIGHTLIES = 'https://nightlies.apache.org' } parameters { booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.') @@ -107,7 +108,7 @@ pipeline { sshPublisherDesc(configName: 'Nightlies', transfers: [ sshTransfer(remoteDirectory: "hbase/${JOB_NAME}/${BUILD_NUMBER}", - sourceFiles: srcFile + sourceFiles: output-srctarball/hbase-src.tar.gz ) ] ) @@ -117,7 +118,7 @@ pipeline { SRC_TAR="${WORKSPACE}/output-srctarball/hbase-src.tar.gz" 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" + python3 ${BASEDIR}/dev-support/gen_redirect_html.py "${ASF_NIGHTLIES}/hbase/${JOB_NAME}/${BUILD_NUMBER}/output-srctarball/hbase-src.tar.gz" > "${WORKSPACE}/output-srctarball/hbase-src.html" ''' } }
