diff options
Diffstat (limited to 'build-aux/Jenkinsfile.full')
-rw-r--r-- | build-aux/Jenkinsfile.full | 8 |
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' + } } } } |