HADOOP-16110 Upgrade to yetus 0.11.1 and use emoji vote on github pre commit (#1527). Contributed by Duo Zhang.

Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
Duo Zhang 2019-11-19 16:51:49 +08:00 committed by Ayush Saxena
parent ea68756c0c
commit 3cecb2a469
1 changed files with 5 additions and 2 deletions

7
Jenkinsfile vendored
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.10.0'
YETUS_VERSION='rel/0.11.1'
}
parameters {
@ -147,11 +147,14 @@ pipeline {
YETUS_ARGS+=("--dockerfile=${DOCKERFILE}")
# effectively treat dev-suport as a custom maven module
YETUS_ARGS+=("--skip-dir=dev-support")
YETUS_ARGS+=("--skip-dirs=dev-support")
# help keep the ASF boxes clean
YETUS_ARGS+=("--sentinel")
# use emoji vote so it is easier to find the broken line
YETUS_ARGS+=("--github-use-emoji-vote")
"${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
'''
}