HBASE-26788 Disable Checks API callback from test results in PRs

Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
Nick Dimiduk 2022-03-03 12:06:38 +01:00 committed by Nick Dimiduk
parent f712a4ceb5
commit 7bb40b384c
1 changed files with 2 additions and 1 deletions

View File

@ -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()
}