From 50c51d3e6fcb30ae6979cc637ad6a78a8d042842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Waldemar=20=C5=BBurowski?= <45210402+wzur-r3@users.noreply.github.com> Date: Tue, 21 Jul 2020 15:42:57 +0100 Subject: [PATCH 1/2] Empty JUnit results are not allowed (#6488) --- .ci/dev/nightly-regression/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/dev/nightly-regression/Jenkinsfile b/.ci/dev/nightly-regression/Jenkinsfile index 7dd4301440..303bd722a9 100644 --- a/.ci/dev/nightly-regression/Jenkinsfile +++ b/.ci/dev/nightly-regression/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { post { always { archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false - junit testResults: '**/build/test-results-xml/**/*.xml', allowEmptyResults: true + junit testResults: '**/build/test-results-xml/**/*.xml' } cleanup { deleteDir() /* clean up our workspace */ From 7437630d56b0e846e7ec3b233f294466c5ab589d Mon Sep 17 00:00:00 2001 From: Waldemar Zurowski Date: Tue, 21 Jul 2020 15:50:21 +0100 Subject: [PATCH 2/2] Empty JUnit results are not allowed --- .ci/dev/mswin/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/dev/mswin/Jenkinsfile b/.ci/dev/mswin/Jenkinsfile index b0e3766e0c..714fadf4fb 100644 --- a/.ci/dev/mswin/Jenkinsfile +++ b/.ci/dev/mswin/Jenkinsfile @@ -65,7 +65,7 @@ pipeline { post { always { archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log' - junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true + junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true bat '.ci/kill_corda_procs.cmd' } cleanup { @@ -87,7 +87,7 @@ pipeline { post { always { archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log' - junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true + junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true bat '.ci/kill_corda_procs.cmd' } cleanup {