This is an automated email from the ASF dual-hosted git repository.
taklwu pushed a commit to branch HBASE-25853
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/HBASE-25853 by this push:
new a03ce5a HBASE-26176 Addendum fix regex in
jenkins_precommit_github_yetus.sh
a03ce5a is described below
commit a03ce5acc96e7bd39f21ee4d73b4fe23e1244f4f
Author: Tak Lon (Stephen) Wu <[email protected]>
AuthorDate: Mon Aug 9 10:24:04 2021 -0700
HBASE-26176 Addendum fix regex in jenkins_precommit_github_yetus.sh
---
dev-support/jenkins_precommit_github_yetus.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-support/jenkins_precommit_github_yetus.sh
b/dev-support/jenkins_precommit_github_yetus.sh
index 4c81a5a..198b010 100755
--- a/dev-support/jenkins_precommit_github_yetus.sh
+++ b/dev-support/jenkins_precommit_github_yetus.sh
@@ -132,7 +132,7 @@ YETUS_ARGS+=("--skip-dirs=dev-support")
if [[ -n "${HADOOP_PROFILE}" ]]; then
# Master has only Hadoop3 support. We don't need to activate any profile.
# The Jenkinsfile should not attempt to run any Hadoop2 tests.
- if [[ "${CHANGE_TARGET}" =~ branch-2* ]]; then
+ if [[ "${CHANGE_TARGET}" = branch-2* ]] || [[ "${CHANGE_TARGET}" =
HBASE-25853 ]]; then
YETUS_ARGS+=("--hadoop-profile=${HADOOP_PROFILE}")
fi
fi