This is an automated email from the ASF dual-hosted git repository. big-r81 pushed a commit to branch dev/make-sync-output in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 7d59ea2dc30d78321627c04579f7077741392f76 Author: Ronny Berndt <[email protected]> AuthorDate: Tue Jun 2 17:37:03 2026 +0200 dev: Print sychronized ouput of make during builds --- build-aux/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile index 50cc2a5ad..c3b90488f 100644 --- a/build-aux/Jenkinsfile +++ b/build-aux/Jenkinsfile @@ -566,7 +566,7 @@ def generateContainerStage(platform) { sh( script: "tar -xf apache-couchdb-*.tar.gz -C ${platform}/couchdb", label: 'Unpack release' ) sh( script: "cd ${platform} && git clone https://github.com/apache/couchdb-pkg", label: 'Clone packaging helper repo' ) dir( "${platform}/couchdb-pkg" ) { - sh( script: 'make', label: 'Build packages' ) + sh( script: 'make --output-sync=target', label: 'Build packages' ) } sh( label: 'Stage package artifacts for archival', script: """ rm -rf pkgs/${platform} @@ -706,7 +706,7 @@ pipeline { sh 'make erlfmt-check' sh 'make elixir-source-checks' sh 'make python-black' - sh 'make -j4 dist' + sh 'make -j4 --output-sync=target dist' } post { success {
