This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch jenkins-debug-failure in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 076c3bf50b6c165ae9fa559c7bf028b20702d2c8 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Thu Dec 18 11:50:18 2025 -0500 Disable fail-fast in Jenkins --- build-aux/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile index 0563159ce..665a16c46 100644 --- a/build-aux/Jenkinsfile +++ b/build-aux/Jenkinsfile @@ -670,7 +670,7 @@ pipeline { steps { script { // Including failFast: true in map fails the build immediately if any parallel step fails - parallelStagesMap = meta.collectEntries( [failFast: true] ) { key, values -> + parallelStagesMap = meta.collectEntries( [failFast: false] ) { key, values -> if (values.image) { ["${key}": generateContainerStage(key)] }
