HBASE-26788 Disable Checks API callback from test results in PRs
Signed-off-by: Sean Busbey <busbey@apache.org>
This commit is contained in:
parent
1b994a179b
commit
dbaa68ab58
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue