This is an automated email from the ASF dual-hosted git repository.
stack pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new fe7a73c HBASE-20970 Update hadoop check versions for hadoop3 in
hbase-personality
fe7a73c is described below
commit fe7a73c9e9751582d39cc2cb9acb7b46185aa4a4
Author: Duo Zhang <[email protected]>
AuthorDate: Sat May 18 14:03:33 2019 -0700
HBASE-20970 Update hadoop check versions for hadoop3 in hbase-personality
Signed-off-by: stack <[email protected]>
---
dev-support/Jenkinsfile | 2 +-
dev-support/hbase-personality.sh | 8 +++++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index b0fa3a3..0d0fae9 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -139,7 +139,7 @@ pipeline {
}
stage ('hadoop 3 cache') {
environment {
- HADOOP3_VERSION="3.0.0"
+ HADOOP3_VERSION="3.0.3"
}
steps {
// directory must be unique for each parallel stage, because
jenkins runs them in the same workspace :(
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 9cab756..fd55f98 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -526,9 +526,15 @@ function hadoopcheck_rebuild
hbase_hadoop2_versions="${hbase_common_hadoop2_versions}"
fi
fi
- hbase_hadoop3_versions="3.0.0"
if [[ "${PATCH_BRANCH}" = branch-1* ]]; then
+ yetus_info "Setting Hadoop 3 versions to test based on branch-1.x rules."
hbase_hadoop3_versions=""
+ else
+ yetus_info "Setting Hadoop 3 versions to test based on
branch-2.x/master/feature branch rules"
+ if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
+ hbase_hadoop3_versions="3.0.3 3.1.2"
+ else
+ hbase_hadoop2_versions="3.0.3 3.1.1 3.1.2"
fi
export MAVEN_OPTS="${MAVEN_OPTS}"