You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/16 03:59:03 UTC

[couchdb] branch jenkins-bump-erlang-and-debian-versions updated: Ensure the failure report is generated in the right directory

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-bump-erlang-and-debian-versions
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-bump-erlang-and-debian-versions by this push:
     new d76c488  Ensure the failure report is generated in the right directory
d76c488 is described below

commit d76c4888bdf76a7c83f7cf0320e8331ae991d6e8
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Jan 15 22:57:58 2022 -0500

    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 3e705e3..f1eb35e 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'
+                    }
                   }
                 }
               }