From d76c4888bdf76a7c83f7cf0320e8331ae991d6e8 Mon Sep 17 00:00:00 2001 From: Adam Kocoloski Date: Sat, 15 Jan 2022 22:57:58 -0500 Subject: Ensure the failure report is generated in the right directory --- build-aux/Jenkinsfile.full | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full index 3e705e331..f1eb35e08 100644 --- a/build-aux/Jenkinsfile.full +++ b/build-aux/Jenkinsfile.full @@ -229,7 +229,9 @@ pipeline { junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml' } failure { - sh 'make build-report' + dir( "${platform}/build/couchdb" ) { + sh 'make build-report' + } } cleanup { sh 'killall -9 beam.smp || true' @@ -287,7 +289,9 @@ pipeline { junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml' } failure { - sh 'make build-report' + dir( "${platform}/build/couchdb" ) { + sh 'make build-report' + } } } } -- cgit v1.2.1