Skip to content

Commit

Permalink
HBASE-26428 Add hadoop 2.10.1, 3.2.2 and 3.3.1 to our hadoop checks (a…
Browse files Browse the repository at this point in the history
…pache#3821)

Signed-off-by: Peter Somogyi <[email protected]>
  • Loading branch information
Apache9 authored Nov 7, 2021
1 parent 1bb8c5c commit 8bc61f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dev-support/hbase-personality.sh
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,9 @@ function hadoopcheck_rebuild
elif [[ "${PATCH_BRANCH}" = branch-2.* ]]; then
yetus_info "Setting Hadoop 2 versions to test based on branch-2.3+ rules."
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
hbase_hadoop2_versions="2.10.0"
hbase_hadoop2_versions="2.10.1"
else
hbase_hadoop2_versions="2.10.0"
hbase_hadoop2_versions="2.10.0 2.10.1"
fi
else
yetus_info "Setting Hadoop 2 versions to null on master/feature branch rules since we do not support hadoop 2 for hbase 3.x any more."
Expand All @@ -620,16 +620,16 @@ function hadoopcheck_rebuild
elif [[ "${PATCH_BRANCH}" = branch-2.2 ]] || [[ "${PATCH_BRANCH}" = branch-2.3 ]]; then
yetus_info "Setting Hadoop 3 versions to test based on branch-2.2/branch-2.3 rules"
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
hbase_hadoop3_versions="3.1.2 3.2.1"
hbase_hadoop3_versions="3.1.2 3.2.2"
else
hbase_hadoop3_versions="3.1.1 3.1.2 3.2.0 3.2.1"
hbase_hadoop3_versions="3.1.1 3.1.2 3.2.0 3.2.1 3.2.2"
fi
else
yetus_info "Setting Hadoop 3 versions to test based on branch-2.4+/master/feature branch rules"
if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then
hbase_hadoop3_versions="3.1.2 3.2.1 3.3.0"
hbase_hadoop3_versions="3.1.2 3.2.2 3.3.1"
else
hbase_hadoop3_versions="3.1.1 3.1.2 3.2.0 3.2.1 3.3.0"
hbase_hadoop3_versions="3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.3.0 3.3.1"
fi
fi

Expand Down

0 comments on commit 8bc61f3

Please sign in to comment.