Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dev-support/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ pipeline {
OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_JDK8_HADOOP2}"
OUTPUT_DIR = "${env.WORKSPACE}/${env.OUTPUT_DIR_RELATIVE_JDK8_HADOOP2}"
SET_JAVA_HOME = '/usr/lib/jvm/java-8'
SKIP_ERRORPRONE = true
}
steps {
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
Expand Down Expand Up @@ -421,6 +422,7 @@ pipeline {
SET_JAVA_HOME = '/usr/lib/jvm/java-8'
// Activates hadoop 3.0 profile in maven runs.
HADOOP_PROFILE = '3.0'
SKIP_ERRORPRONE = true
}
steps {
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
Expand Down Expand Up @@ -530,8 +532,7 @@ pipeline {
SET_JAVA_HOME = "/usr/lib/jvm/java-11"
// Activates hadoop 3.0 profile in maven runs.
HADOOP_PROFILE = '3.0'
// ErrorProne is broken on JDK11, see HBASE-23894
SKIP_ERROR_PRONE = 'true'
SKIP_ERRORPRONE = true
}
steps {
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
Expand Down
2 changes: 1 addition & 1 deletion dev-support/hbase_nightly_yetus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if [[ -n "${HADOOP_PROFILE}" ]]; then
fi
fi

if [[ -n "${SKIP_ERROR_PRONE}" ]]; then
if [[ "${SKIP_ERRORPRONE}" = "true" ]]; then
YETUS_ARGS=("--skip-errorprone" "${YETUS_ARGS[@]}")
fi

Expand Down