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