From f3eea101cad2dd7c0f0e59972b5201ee519a6fe4 Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Fri, 5 Mar 2021 13:46:30 +0900 Subject: [PATCH 1/3] Test YETUS-1102 (Add an option to comment to GitHub PR) --- dev-support/Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 6841ed30a79cc..83038cb149fd6 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/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.13.0' + YETUS_VERSION='YETUS-1102' } parameters { @@ -51,7 +51,7 @@ pipeline { checkout([ $class: 'GitSCM', branches: [[name: "${env.YETUS_VERSION}"]], - userRemoteConfigs: [[ url: 'https://github.com/apache/yetus.git']]] + userRemoteConfigs: [[ url: 'https://github.com/aajisaka/yetus.git']]] ) } } @@ -157,6 +157,10 @@ pipeline { # custom javadoc goals YETUS_ARGS+=("--mvn-javadoc-goals=process-sources,javadoc:javadoc-no-fork") + # write Yetus report as GitHub comment (YETUS-1102) + YETUS_ARGS+=("--github-write-comment") + YETUS_ARGS+=("--github-use-emoji-vote") + "${TESTPATCHBIN}" "${YETUS_ARGS[@]}" ''' } From 48eab3a26f1c1338d50f0bd625962ff373c502ce Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Fri, 5 Mar 2021 17:06:23 +0900 Subject: [PATCH 2/3] empty commit From dd55a1b3b16816455c4ed91892f03b407fb7e53a Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Tue, 9 Mar 2021 16:14:40 +0900 Subject: [PATCH 3/3] Use commit hash in Apache Yetus --- dev-support/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 83038cb149fd6..12e9e2b1699b6 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/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='YETUS-1102' + YETUS_VERSION='11eb9b09786e401fbdeaa3be83a19a4066fd7813' } parameters { @@ -51,7 +51,7 @@ pipeline { checkout([ $class: 'GitSCM', branches: [[name: "${env.YETUS_VERSION}"]], - userRemoteConfigs: [[ url: 'https://github.com/aajisaka/yetus.git']]] + userRemoteConfigs: [[ url: 'https://github.com/apache/yetus.git']]] ) } }