This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new 79a8d7a HBASE-26788 Disable Checks API callback from test results in
PRs
79a8d7a is described below
commit 79a8d7a80b98831908fc42fd23bc731b412bb6ad
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)