Skip to content

Commit 7fd6631

Browse files
committed
HBASE-28679 Upgrade yetus to a newer version
1 parent 67cc820 commit 7fd6631

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

dev-support/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipeline {
3131
disableConcurrentBuilds()
3232
}
3333
environment {
34-
YETUS_RELEASE = '0.12.0'
34+
YETUS_RELEASE = '0.15.0'
3535
// where we'll write everything from different steps. Need a copy here so the final step can check for success/failure.
3636
OUTPUT_DIR_RELATIVE_GENERAL = 'output-general'
3737
OUTPUT_DIR_RELATIVE_JDK8_HADOOP2 = 'output-jdk8-hadoop2'

dev-support/Jenkinsfile_GitHub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pipeline {
3737
DOCKERFILE_REL = "${SRC_REL}/dev-support/docker/Dockerfile"
3838
YETUS_DRIVER_REL = "${SRC_REL}/dev-support/jenkins_precommit_github_yetus.sh"
3939
// Branch or tag name. Yetus release tags are 'rel/X.Y.Z'
40-
YETUS_VERSION = 'rel/0.12.0'
40+
YETUS_VERSION = 'rel/0.15.0'
4141
GENERAL_CHECK_PLUGINS = 'all,-javadoc,-jira,-shadedjars,-unit'
4242
JDK_SPECIFIC_PLUGINS = 'compile,github,htmlout,javac,javadoc,maven,mvninstall,shadedjars,unit'
4343
// output from surefire; sadly the archive function in yetus only works on file names.

dev-support/docker/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -qq update && \
5353
ruby=1:3.0* \
5454
ruby-dev=1:3.0* \
5555
shellcheck='0.8.0-*' \
56+
libxml2-dev='2.9.13+dfsg-*' \
57+
libxml2-utils='2.9.13+dfsg-*' \
5658
&& \
5759
apt-get clean && \
5860
rm -rf /var/lib/apt/lists/* \

dev-support/jenkins_precommit_github_yetus.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ YETUS_ARGS+=("--brief-report-file=${PATCHDIR}/brief.txt")
8787
YETUS_ARGS+=("--console-report-file=${PATCHDIR}/console.txt")
8888
YETUS_ARGS+=("--html-report-file=${PATCHDIR}/report.html")
8989
# enable writing back to Github
90-
YETUS_ARGS+=("--github-password=${GITHUB_PASSWORD}")
91-
YETUS_ARGS+=("--github-user=${GITHUB_USER}")
90+
YETUS_ARGS+=("--github-token=${GITHUB_PASSWORD}")
9291
# auto-kill any surefire stragglers during unit test runs
9392
YETUS_ARGS+=("--reapermode=kill")
9493
# set relatively high limits for ASF machines

0 commit comments

Comments
 (0)