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-02 15:22:06 +01:00 committed by Nick Dimiduk
parent 1b994a179b
commit dbaa68ab58
1 changed files with 4 additions and 2 deletions

View File

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