summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2022-01-15 22:57:58 -0500
committerAdam Kocoloski <kocolosk@apache.org>2022-01-15 22:57:58 -0500
commitd76c4888bdf76a7c83f7cf0320e8331ae991d6e8 (patch)
treea132192b99605c0b88e02f2dbaf9147d12023873
parentb6a75fb07f36ec67547ee7b9fc76e4a8ccc34fe0 (diff)
downloadcouchdb-jenkins-bump-erlang-and-debian-versions.tar.gz
Ensure the failure report is generated in the right directoryjenkins-bump-erlang-and-debian-versions
-rw-r--r--build-aux/Jenkinsfile.full8
1 files 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'
+ }
}
}
}