From a8e23ca939cd6287096bfd059769788d48fca88c Mon Sep 17 00:00:00 2001 From: Nick Dimiduk Date: Fri, 23 Jan 2026 13:17:32 +0100 Subject: [PATCH] HBASE-29851 Add more directories to yetus skip-dirs (#7670) Signed-off-by: Peter Somogyi --- 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 763025024395..d5d61f69cfc4 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.