You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/06/03 02:26:19 UTC

[hbase] branch branch-2.1 updated: HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches

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

zhangduo 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 d10fe0d  HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches
d10fe0d is described below

commit d10fe0d68379b207db0d107203c52f5c43e6c0c0
Author: zhangduo <zh...@apache.org>
AuthorDate: Fri May 31 21:57:46 2019 +0800

    HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches
    
    Signed-off-by: Andrew Purtell <ap...@apache.org>
---
 dev-support/hbase-personality.sh | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index d5f0177..94f03ce 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -529,19 +529,26 @@ function hadoopcheck_rebuild
     if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
       hbase_hadoop2_versions="2.8.5 2.9.2"
     else
-      hbase_hadoop2_versions="2.8.2 2.8.3 2.8.4 2.8.5 2.9.1 2.9.2"
+      hbase_hadoop2_versions="2.8.5 2.9.2"
     fi
   fi
   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"
+  elif [[ "${PATCH_BRANCH}" = branch-2.0 ]] || [[ "${PATCH_BRANCH}" = branch-2.1 ]]; then
+    yetus_info "Setting Hadoop 3 versions to test based on branch-2.0/branch-2.1 rules"
     if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
       hbase_hadoop3_versions="3.0.3 3.1.2"
     else
       hbase_hadoop3_versions="3.0.3 3.1.1 3.1.2"
     fi
+  else
+    yetus_info "Setting Hadoop 3 versions to test based on branch-2.2+/master/feature branch rules"
+    if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
+      hbase_hadoop3_versions="3.1.2"
+    else
+      hbase_hadoop3_versions="3.1.1 3.1.2"
+    fi
   fi
 
   export MAVEN_OPTS="${MAVEN_OPTS}"