Browse Source

HADOOP-17570. Apply YETUS-1102 to re-enable GitHub comments (#2745)

Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
(cherry picked from commit 9b78de25507bc22ff5a44da4b2a112fbccc64500)

 Conflicts:
	dev-support/Jenkinsfile
Akira Ajisaka 4 years ago
parent
commit
112efdc74e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      dev-support/Jenkinsfile

+ 5 - 1
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='11eb9b09786e401fbdeaa3be83a19a4066fd7813'
         MAVEN_OPTS='-Xms256m -Xmx1536m -Dhttps.protocols=TLSv1.2 -Dhttps.cipherSuites=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256'
     }
 
@@ -148,6 +148,10 @@ pipeline {
                         YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/zulu-7-amd64")
                         YETUS_ARGS+=("--multijdktests=compile")
 
+                        # write Yetus report as GitHub comment (YETUS-1102)
+                        YETUS_ARGS+=("--github-write-comment")
+                        YETUS_ARGS+=("--github-use-emoji-vote")
+
                         "${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
                         '''
                 }