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 2023/05/15 02:51:17 UTC

[hbase] 01/03: HBASE-27863 Add hadoop 3.3.5 check in our personality script (#5236)

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

zhangduo pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit 180d7ce5ce5652493e25df2f919b870ea5e68c92
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon May 15 10:34:46 2023 +0800

    HBASE-27863 Add hadoop 3.3.5 check in our personality script (#5236)
    
    Signed-off-by: Liangjun He <he...@apache.org>
    (cherry picked from commit b28feeb989bec9709fcfbaa5066669cedea77bda)
---
 dev-support/hbase-personality.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index facf3fc077a..48eb55e3eaf 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -598,16 +598,16 @@ function hadoopcheck_rebuild
   if [[ "${PATCH_BRANCH}" = branch-2.4 ]]; then
     yetus_info "Setting Hadoop 3 versions to test based on branch-2.4 rules"
     if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
-      hbase_hadoop3_versions="3.1.4 3.2.4 3.3.4"
+      hbase_hadoop3_versions="3.1.4 3.2.4 3.3.5"
     else
-      hbase_hadoop3_versions="3.1.1 3.1.2 3.1.3 3.1.4 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4"
+      hbase_hadoop3_versions="3.1.1 3.1.2 3.1.3 3.1.4 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5"
     fi
   else
     yetus_info "Setting Hadoop 3 versions to test based on branch-2.5+/master/feature branch rules"
     if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
-      hbase_hadoop3_versions="3.2.4 3.3.4"
+      hbase_hadoop3_versions="3.2.4 3.3.5"
     else
-      hbase_hadoop3_versions="3.2.3 3.2.4 3.3.2 3.3.3 3.3.4"
+      hbase_hadoop3_versions="3.2.3 3.2.4 3.3.2 3.3.3 3.3.4 3.3.5"
     fi
   fi