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
The following commit(s) were added to refs/heads/HBASE-29930 by this push:
new efcd396d93f fix
efcd396d93f is described below
commit efcd396d93fabd31be1d2b1e64f69c4623282686
Author: Duo Zhang <[email protected]>
AuthorDate: Sat Feb 28 15:30:59 2026 +0800
fix
---
.../integration-test/integration-test.Jenkinsfile | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev-support/integration-test/integration-test.Jenkinsfile
b/dev-support/integration-test/integration-test.Jenkinsfile
index cb304d3d827..ec215ace464 100644
--- a/dev-support/integration-test/integration-test.Jenkinsfile
+++ b/dev-support/integration-test/integration-test.Jenkinsfile
@@ -31,7 +31,7 @@ pipeline {
script {
for (hadoop_version in getHadoopVersions(env.HADOOP2_VERSIONS,
env.HADOOP3_VERSIONS)) {
echo "Download hadoop-" + hadoop_version
- env.HADOOP_VERSION = hadoop_Version
+ env.HADOOP_VERSION = hadoop_version
stage ('hadoop cache inner stage') {
dir("downloads-hadoop-${HADOOP_VERSION}") {
sh '''#!/usr/bin/env bash
@@ -42,13 +42,13 @@ pipeline {
set -e
echo "Ensure we have a copy of Hadoop ${HADOOP_VERSION}"
"${WORKSPACE}/component/dev-support/jenkins-scripts/cache-apache-project-artifact.sh"
\
- --working-dir
"${WORKSPACE}/downloads-hadoop-${HADOOP3_VERSION}" \
+ --working-dir
"${WORKSPACE}/downloads-hadoop-${HADOOP_VERSION}" \
--keys 'https://downloads.apache.org/hadoop/common/KEYS' \
--verify-tar-gz \
- "${WORKSPACE}/hadoop-${HADOOP3_VERSION}-bin.tar.gz" \
-
"hadoop/common/hadoop-${HADOOP3_VERSION}/hadoop-${HADOOP3_VERSION}.tar.gz"
- for stale in $(ls -1 "${WORKSPACE}"/hadoop-3*.tar.gz | grep -v
${HADOOP3_VERSION}); do
- echo "Delete stale hadoop 3 cache ${stale}"
+ "${WORKSPACE}/hadoop-${HADOOP_VERSION}-bin.tar.gz" \
+
"hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz"
+ for stale in $(ls -1 "${WORKSPACE}"/hadoop-*.tar.gz | grep -v
${HADOOP_VERSION}); do
+ echo "Delete stale hadoop cache ${stale}"
rm -rf $stale
done
'''
@@ -89,8 +89,8 @@ pipeline {
def results = []
results.add('output-srctarball/commentfile')
results.add("output-integration-hadoop-${env.HADOOP_VERSION}/commentfile")
- for (hadoop3_version in getHadoopVersions($env.HADOOP3_VERSIONS)) {
-
results.add("output-integration-hadoop-${hadoop3_version}/commentfile")
+ for (hadoop_version in getHadoopVersions(env.HADOOP2_VERSIONS,
env.HADOOP3_VERSIONS)) {
+
results.add("output-integration-hadoop-${hadoop_version}/commentfile")
}
echo env.BRANCH_NAME
echo env.BUILD_URL