This is an automated email from the ASF dual-hosted git repository.

adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git


The following commit(s) were added to refs/heads/master by this push:
     new bad6cfdb6fe HDDS-13996. Skip Hugo build in unrelated checks (#9357)
bad6cfdb6fe is described below

commit bad6cfdb6fea57b0940ea05c69aa122c6be08932
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Tue Nov 25 17:47:35 2025 +0100

    HDDS-13996. Skip Hugo build in unrelated checks (#9357)
---
 hadoop-ozone/dev-support/checks/checkstyle.sh | 2 +-
 hadoop-ozone/dev-support/checks/findbugs.sh   | 2 +-
 hadoop-ozone/dev-support/checks/javadoc.sh    | 2 +-
 hadoop-ozone/dev-support/checks/junit.sh      | 2 +-
 hadoop-ozone/dev-support/checks/license.sh    | 2 +-
 hadoop-ozone/dev-support/checks/pmd.sh        | 2 +-
 hadoop-ozone/dev-support/checks/sonar.sh      | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/hadoop-ozone/dev-support/checks/checkstyle.sh 
b/hadoop-ozone/dev-support/checks/checkstyle.sh
index 09b24b93a8b..836132c6c0a 100755
--- a/hadoop-ozone/dev-support/checks/checkstyle.sh
+++ b/hadoop-ozone/dev-support/checks/checkstyle.sh
@@ -24,7 +24,7 @@ REPORT_DIR=${OUTPUT_DIR:-"$DIR/../../../target/checkstyle"}
 mkdir -p "$REPORT_DIR"
 REPORT_FILE="$REPORT_DIR/summary.txt"
 
-MAVEN_OPTIONS='-B -fae -DskipRecon -Dcheckstyle.failOnViolation=false 
--no-transfer-progress'
+MAVEN_OPTIONS='-B -fae -DskipDocs -DskipRecon 
-Dcheckstyle.failOnViolation=false --no-transfer-progress'
 
 declare -i rc
 mvn ${MAVEN_OPTIONS} checkstyle:check > "${REPORT_DIR}/output.log"
diff --git a/hadoop-ozone/dev-support/checks/findbugs.sh 
b/hadoop-ozone/dev-support/checks/findbugs.sh
index 0bd7a5717e2..84625e0aa49 100755
--- a/hadoop-ozone/dev-support/checks/findbugs.sh
+++ b/hadoop-ozone/dev-support/checks/findbugs.sh
@@ -30,7 +30,7 @@ REPORT_DIR=${OUTPUT_DIR:-"$DIR/../../../target/findbugs"}
 mkdir -p "$REPORT_DIR"
 REPORT_FILE="$REPORT_DIR/summary.txt"
 
-MAVEN_OPTIONS='-B -fae -DskipRecon --no-transfer-progress'
+MAVEN_OPTIONS='-B -fae -DskipDocs -DskipRecon --no-transfer-progress'
 
 if [[ "${OZONE_WITH_COVERAGE}" != "true" ]]; then
   MAVEN_OPTIONS="${MAVEN_OPTIONS} -Djacoco.skip"
diff --git a/hadoop-ozone/dev-support/checks/javadoc.sh 
b/hadoop-ozone/dev-support/checks/javadoc.sh
index b1b09bf4923..dc98695a5bb 100755
--- a/hadoop-ozone/dev-support/checks/javadoc.sh
+++ b/hadoop-ozone/dev-support/checks/javadoc.sh
@@ -23,7 +23,7 @@ BASE_DIR="$(pwd -P)"
 REPORT_DIR=${OUTPUT_DIR:-"${BASE_DIR}/target/javadoc"}
 REPORT_FILE="$REPORT_DIR/summary.txt"
 
-MAVEN_OPTIONS="-B -fae -DskipRecon --no-transfer-progress ${MAVEN_OPTIONS:-}"
+MAVEN_OPTIONS="-B -fae -DskipDocs -DskipRecon --no-transfer-progress 
${MAVEN_OPTIONS:-}"
 
 mvn ${MAVEN_OPTIONS} javadoc:aggregate "$@" | tee output.log
 rc=$?
diff --git a/hadoop-ozone/dev-support/checks/junit.sh 
b/hadoop-ozone/dev-support/checks/junit.sh
index 71947ff8433..9f06ff3bd10 100755
--- a/hadoop-ozone/dev-support/checks/junit.sh
+++ b/hadoop-ozone/dev-support/checks/junit.sh
@@ -35,7 +35,7 @@ if [[ ${ITERATIONS} -le 0 ]]; then
 fi
 
 export MAVEN_OPTS="-Xmx4096m ${MAVEN_OPTS:-}"
-MAVEN_OPTIONS="-B -V -DskipRecon -Dnative.lib.tmp.dir=/tmp 
--no-transfer-progress"
+MAVEN_OPTIONS="-B -V -DskipDocs -DskipRecon -Dnative.lib.tmp.dir=/tmp 
--no-transfer-progress"
 
 if [[ "${OZONE_WITH_COVERAGE}" != "true" ]]; then
   MAVEN_OPTIONS="${MAVEN_OPTIONS} -Djacoco.skip"
diff --git a/hadoop-ozone/dev-support/checks/license.sh 
b/hadoop-ozone/dev-support/checks/license.sh
index cd32988e9ae..a318f312df5 100755
--- a/hadoop-ozone/dev-support/checks/license.sh
+++ b/hadoop-ozone/dev-support/checks/license.sh
@@ -42,7 +42,7 @@ DEFAULT_SRC="target/generated-sources/license/THIRD-PARTY.txt"
 src="${1:-${DEFAULT_SRC}}"
 
 if [[ ! -e ${src} ]]; then
-  MAVEN_OPTIONS="-B -fae -DskipRecon --no-transfer-progress ${MAVEN_OPTIONS:-}"
+  MAVEN_OPTIONS="-B -fae -DskipDocs -DskipRecon --no-transfer-progress 
${MAVEN_OPTIONS:-}"
   mvn ${MAVEN_OPTIONS} license:aggregate-add-third-party | tee 
"${REPORT_DIR}/output.log"
   src="${DEFAULT_SRC}"
 fi
diff --git a/hadoop-ozone/dev-support/checks/pmd.sh 
b/hadoop-ozone/dev-support/checks/pmd.sh
index 1a9c9487f31..be34f08282d 100755
--- a/hadoop-ozone/dev-support/checks/pmd.sh
+++ b/hadoop-ozone/dev-support/checks/pmd.sh
@@ -26,7 +26,7 @@ mkdir -p "$REPORT_DIR"
 
 REPORT_FILE="$REPORT_DIR/summary.txt"
 
-MAVEN_OPTIONS='-B -fae --no-transfer-progress -Dpmd.failOnViolation=false 
-Dpmd.printFailingErrors -DskipRecon'
+MAVEN_OPTIONS='-B -fae --no-transfer-progress -Dpmd.failOnViolation=false 
-Dpmd.printFailingErrors -DskipDocs -DskipRecon'
 
 declare -i rc
 
diff --git a/hadoop-ozone/dev-support/checks/sonar.sh 
b/hadoop-ozone/dev-support/checks/sonar.sh
index 1b6773f779b..d5e1dba510c 100755
--- a/hadoop-ozone/dev-support/checks/sonar.sh
+++ b/hadoop-ozone/dev-support/checks/sonar.sh
@@ -25,6 +25,6 @@ fi
 
 : "${SONAR_MAVEN_PLUGIN_VERSION:=5.1.0.4751}"
 
-mvn -V -B -DskipShade -DskipTests -DskipRecon --no-transfer-progress \
+mvn -V -B -DskipDocs -DskipShade -DskipTests -DskipRecon 
--no-transfer-progress \
   -Dsonar.coverage.jacoco.xmlReportPaths="$(pwd)/target/coverage/all.xml" \
   verify 
"org.sonarsource.scanner.maven:sonar-maven-plugin:${SONAR_MAVEN_PLUGIN_VERSION}:sonar"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to