This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-1 by this push:
new 7bb40b3 HBASE-26788 Disable Checks API callback from test results in
PRs
7bb40b3 is described below
commit 7bb40b384cc3221939118405ac4069f6162164f4
Author: Nick Dimiduk <[email protected]>
AuthorDate: Thu Mar 3 12:06:38 2022 +0100
HBASE-26788 Disable Checks API callback from test results in PRs
Signed-off-by: Sean Busbey <[email protected]>
---
dev-support/Jenkinsfile_GitHub | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-support/Jenkinsfile_GitHub b/dev-support/Jenkinsfile_GitHub
index bdd693a..a5f5570 100644
--- a/dev-support/Jenkinsfile_GitHub
+++ b/dev-support/Jenkinsfile_GitHub
@@ -194,7 +194,8 @@ pipeline {
])
// Publish JUnit results
try {
- junit "${env.SOURCEDIR}/**/target/surefire-reports/*.xml"
+ junit "${env.SOURCEDIR}/**/target/surefire-reports/*.xml",
+ allowEmptyResults: true, skipPublishingChecks: true
} catch(e) {
echo 'junit processing: ' + e.toString()
}