From 3cecb2a46974d446a91435ac49c70742e3cbb6bd Mon Sep 17 00:00:00 2001 From: Duo Zhang Date: Tue, 19 Nov 2019 16:51:49 +0800 Subject: [PATCH] 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 --- Jenkinsfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 11cbb9189c..17e74661fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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[@]}" ''' }