HADOOP-17570. Apply YETUS-1102 to re-enable GitHub comments (#2745)

Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
Akira Ajisaka 2021-03-11 21:48:47 +09:00 committed by GitHub
parent bcd9c67082
commit 9b78de2550
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -35,7 +35,7 @@ pipeline {
DOCKERFILE = "${SOURCEDIR}/dev-support/docker/Dockerfile"
YETUS='yetus'
// Branch or tag name. Yetus release tags are 'rel/X.Y.Z'
YETUS_VERSION='rel/0.13.0'
YETUS_VERSION='11eb9b09786e401fbdeaa3be83a19a4066fd7813'
}
parameters {
@ -157,6 +157,10 @@ pipeline {
# custom javadoc goals
YETUS_ARGS+=("--mvn-javadoc-goals=process-sources,javadoc:javadoc-no-fork")
# write Yetus report as GitHub comment (YETUS-1102)
YETUS_ARGS+=("--github-write-comment")
YETUS_ARGS+=("--github-use-emoji-vote")
"${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
'''
}