HADOOP-16610. 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>
(cherry picked from commit 3cecb2a469)
(cherry picked from commit 440b7abc04)
This commit is contained in:
Duo Zhang 2019-11-19 16:51:49 +08:00 committed by Akira Ajisaka
parent 5853fa2ea2
commit 83d676ab2e
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
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[@]}"
'''
}