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
c3ac78691e
commit
b4d0205315
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue