Skip to content

Commit a03ce5a

Browse files
committed
HBASE-26176 Addendum fix regex in jenkins_precommit_github_yetus.sh
1 parent 1a30692 commit a03ce5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-support/jenkins_precommit_github_yetus.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ YETUS_ARGS+=("--skip-dirs=dev-support")
132132
if [[ -n "${HADOOP_PROFILE}" ]]; then
133133
# Master has only Hadoop3 support. We don't need to activate any profile.
134134
# The Jenkinsfile should not attempt to run any Hadoop2 tests.
135-
if [[ "${CHANGE_TARGET}" =~ branch-2* ]]; then
135+
if [[ "${CHANGE_TARGET}" = branch-2* ]] || [[ "${CHANGE_TARGET}" = HBASE-25853 ]]; then
136136
YETUS_ARGS+=("--hadoop-profile=${HADOOP_PROFILE}")
137137
fi
138138
fi

0 commit comments

Comments
 (0)