Skip to content

Commit b7d5f84

Browse files
committed
TEZ-4625: Yetus upgrade to 0.15.1 version
1 parent 6d25c3c commit b7d5f84

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pipeline {
3535
DOCKERFILE = "${SOURCEDIR}/build-tools/docker/Dockerfile"
3636
YETUS='yetus'
3737
// Branch or tag name. Yetus release tags are 'rel/X.Y.Z'
38-
YETUS_VERSION='rel/0.12.0'
38+
YETUS_VERSION='rel/0.15.1'
3939

4040
}
4141

@@ -105,7 +105,6 @@ pipeline {
105105
YETUS_ARGS+=("--html-report-file=${WORKSPACE}/${PATCHDIR}/report.html")
106106
107107
# enable writing back to Github
108-
YETUS_ARGS+=(--github-user="${GITHUB_USER}")
109108
YETUS_ARGS+=(--github-token="${GITHUB_TOKEN}")
110109
111110
# auto-kill any surefire stragglers during unit test runs
@@ -149,15 +148,16 @@ pipeline {
149148
# help keep the ASF boxes clean
150149
YETUS_ARGS+=("--sentinel")
151150
152-
# use emoji vote so it is easier to find the broken line
153-
YETUS_ARGS+=("--github-use-emoji-vote")
154-
155151
# test with Java 8 and 11
156152
YETUS_ARGS+=("--java-home=/usr/lib/jvm/java-8-openjdk-amd64")
157153
YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/java-11-openjdk-amd64")
158154
YETUS_ARGS+=("--multijdktests=compile")
159155
YETUS_ARGS+=("--debug")
160156
157+
# write Yetus report as GitHub comment (YETUS-1102)
158+
YETUS_ARGS+=("--github-write-comment")
159+
YETUS_ARGS+=("--github-use-emoji-vote")
160+
161161
"${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
162162
'''
163163
}

0 commit comments

Comments
 (0)