This is an automated email from the ASF dual-hosted git repository. matthieu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 84901537edc84c0a813bb39498c29a2ded8c9e46 Author: Jean Helou <[email protected]> AuthorDate: Fri Jan 8 14:58:45 2021 +0100 JAMES-3225 Allow empty failsafe results for stable stage integration tests are mostly unstable for now and there may not be failsafe runs --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 459dd36..4f83cce 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -97,8 +97,8 @@ pipeline { post { always { junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: false) - junit(testResults: '**/failsafe-reports/*.xml', allowEmptyResults: false) - archiveArtifacts artifacts: '**/surefire-reports/*.dumpstream' , fingerprint: true + junit(testResults: '**/failsafe-reports/*.xml', allowEmptyResults: true) + archiveArtifacts artifacts: '**/surefire-reports/*.dumpstream' , fingerprint: true } } } @@ -114,7 +114,7 @@ pipeline { always { junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: true) junit(testResults: '**/failsafe-reports/*.xml', allowEmptyResults: true) - archiveArtifacts artifacts: '**/surefire-reports/*.dumpstream' , fingerprint: true + archiveArtifacts artifacts: '**/surefire-reports/*.dumpstream' , fingerprint: true } } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
