File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,7 @@ pipeline {
312
312
OUTPUT_DIR_RELATIVE = " ${ env.OUTPUT_DIR_RELATIVE_JDK8_HADOOP2} "
313
313
OUTPUT_DIR = " ${ env.WORKSPACE} /${ env.OUTPUT_DIR_RELATIVE_JDK8_HADOOP2} "
314
314
SET_JAVA_HOME = ' /usr/lib/jvm/java-8'
315
+ SKIP_ERRORPRONE = true
315
316
}
316
317
steps {
317
318
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
@@ -421,6 +422,7 @@ pipeline {
421
422
SET_JAVA_HOME = ' /usr/lib/jvm/java-8'
422
423
// Activates hadoop 3.0 profile in maven runs.
423
424
HADOOP_PROFILE = ' 3.0'
425
+ SKIP_ERRORPRONE = true
424
426
}
425
427
steps {
426
428
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
@@ -530,8 +532,7 @@ pipeline {
530
532
SET_JAVA_HOME = " /usr/lib/jvm/java-11"
531
533
// Activates hadoop 3.0 profile in maven runs.
532
534
HADOOP_PROFILE = ' 3.0'
533
- // ErrorProne is broken on JDK11, see HBASE-23894
534
- SKIP_ERROR_PRONE = ' true'
535
+ SKIP_ERRORPRONE = true
535
536
}
536
537
steps {
537
538
// Must do prior to anything else, since if one of them timesout we'll stash the commentfile
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ if [[ -n "${HADOOP_PROFILE}" ]]; then
83
83
fi
84
84
fi
85
85
86
- if [[ -n " ${SKIP_ERROR_PRONE} " ]]; then
86
+ if [[ " ${SKIP_ERRORPRONE} " = " true " ]]; then
87
87
YETUS_ARGS=(" --skip-errorprone" " ${YETUS_ARGS[@]} " )
88
88
fi
89
89
You can’t perform that action at this time.
0 commit comments