This is an automated email from the ASF dual-hosted git repository.

ndimiduk pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 651ec82  HBASE-26788 Disable Checks API callback from test results in 
PRs
651ec82 is described below

commit 651ec820ff873a2a8220a64af27c8b73f7a105f3
Author: Nick Dimiduk <[email protected]>
AuthorDate: Wed Mar 2 15:22:06 2022 +0100

    HBASE-26788 Disable Checks API callback from test results in PRs
    
    Signed-off-by: Sean Busbey <[email protected]>
---
 dev-support/Jenkinsfile_GitHub | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-support/Jenkinsfile_GitHub b/dev-support/Jenkinsfile_GitHub
index 6c31695..12a83ce 100644
--- a/dev-support/Jenkinsfile_GitHub
+++ b/dev-support/Jenkinsfile_GitHub
@@ -250,7 +250,8 @@ pipeline {
                     }
                     post {
                         always {
-                            junit testResults: 
"${WORKDIR_REL}/${SRC_REL}/**/target/**/TEST-*.xml", allowEmptyResults: true
+                            junit testResults: 
"${WORKDIR_REL}/${SRC_REL}/**/target/**/TEST-*.xml",
+                              allowEmptyResults: true, skipPublishingChecks: 
true
                             sh label: 'zip surefire reports', script: 
'''#!/bin/bash -e
                                 if [ -d "${PATCHDIR}/archiver" ]; then
                                   count=$(find "${PATCHDIR}/archiver" -type f 
| wc -l)
@@ -382,7 +383,8 @@ pipeline {
                     }
                     post {
                         always {
-                            junit testResults: 
"${WORKDIR_REL}/${SRC_REL}/**/target/**/TEST-*.xml", allowEmptyResults: true
+                            junit testResults: 
"${WORKDIR_REL}/${SRC_REL}/**/target/**/TEST-*.xml",
+                              allowEmptyResults: true, skipPublishingChecks: 
true
                             sh label: 'zip surefire reports', script: 
'''#!/bin/bash -e
                                 if [ -d "${PATCHDIR}/archiver" ]; then
                                   count=$(find "${PATCHDIR}/archiver" -type f 
| wc -l)

Reply via email to