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 c3ac78691e
commit b4d0205315
1 changed files with 4 additions and 2 deletions

View File

@ -250,7 +250,8 @@ pipeline {
} }
post { post {
always { 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 sh label: 'zip surefire reports', script: '''#!/bin/bash -e
if [ -d "${PATCHDIR}/archiver" ]; then if [ -d "${PATCHDIR}/archiver" ]; then
count=$(find "${PATCHDIR}/archiver" -type f | wc -l) count=$(find "${PATCHDIR}/archiver" -type f | wc -l)
@ -382,7 +383,8 @@ pipeline {
} }
post { post {
always { 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 sh label: 'zip surefire reports', script: '''#!/bin/bash -e
if [ -d "${PATCHDIR}/archiver" ]; then if [ -d "${PATCHDIR}/archiver" ]; then
count=$(find "${PATCHDIR}/archiver" -type f | wc -l) count=$(find "${PATCHDIR}/archiver" -type f | wc -l)