This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new b77161d4669 HBASE-29851 Add more directories to yetus skip-dirs (#7670)
b77161d4669 is described below
commit b77161d46699961affd96eab41742dc4abe53868
Author: Nick Dimiduk <[email protected]>
AuthorDate: Fri Jan 23 13:17:32 2026 +0100
HBASE-29851 Add more directories to yetus skip-dirs (#7670)
Signed-off-by: Peter Somogyi <[email protected]>
---
dev-support/jenkins_precommit_github_yetus.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-support/jenkins_precommit_github_yetus.sh
b/dev-support/jenkins_precommit_github_yetus.sh
index 76302502439..d5d61f69cfc 100755
--- a/dev-support/jenkins_precommit_github_yetus.sh
+++ b/dev-support/jenkins_precommit_github_yetus.sh
@@ -133,8 +133,8 @@ if [[ "${SKIP_ERRORPRONE}" = "true" ]]; then
# skip error prone
YETUS_ARGS+=("--skip-errorprone")
fi
-# effectively treat dev-support as a custom maven module
-YETUS_ARGS+=("--skip-dirs=dev-support")
+# Exclude non-code directories from module detection to avoid triggering full
builds
+YETUS_ARGS+=("--skip-dirs=dev-support,.github,bin,conf")
# For testing with specific hadoop version. Activates corresponding profile in
maven runs.
if [[ -n "${HADOOP_PROFILE}" ]]; then
# Master has only Hadoop3 support. We don't need to activate any profile.