HBASE-22174 Remove error prone from our precommit javac check
This commit is contained in:
parent
e12d15ce8b
commit
5fdc4fb437
|
@ -153,6 +153,7 @@ pipeline {
|
|||
YETUS_ARGS+=("--whitespace-tabs-ignore-list=.*/generated/.*")
|
||||
YETUS_ARGS+=("--personality=${SOURCEDIR}/dev-support/hbase-personality.sh")
|
||||
YETUS_ARGS+=("--quick-hadoopcheck")
|
||||
YETUS_ARGS+=("--skip-errorprone")
|
||||
# effectively treat dev-support as a custom maven module
|
||||
YETUS_ARGS+=("--skip-dir=dev-support")
|
||||
# help keep the ASF boxes clean
|
||||
|
|
|
@ -94,6 +94,9 @@ function personality_parse_args
|
|||
--hadoop-profile=*)
|
||||
HADOOP_PROFILE=${i#*=}
|
||||
;;
|
||||
--skip-errorprone)
|
||||
SKIP_ERRORPRONE=true
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
@ -165,7 +168,7 @@ function personality_modules
|
|||
return
|
||||
fi
|
||||
|
||||
if [[ ${testtype} == compile ]]; then
|
||||
if [[ ${testtype} == compile ]] && [[ "${SKIP_ERRORPRONE}" != "true" ]]; then
|
||||
extra="${extra} -PerrorProne"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue