This is an automated email from the ASF dual-hosted git repository.
big-r81 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 5a8d31eee ci: Use OTP27 as minimum version (#6036)
5a8d31eee is described below
commit 5a8d31eeee55ae7aef2bae01de4b75d5cbb852be
Author: Ronny Berndt <[email protected]>
AuthorDate: Sun Jun 14 13:25:25 2026 +0200
ci: Use OTP27 as minimum version (#6036)
---
build-aux/Jenkinsfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile
index a8c0ea70d..3406fe0c7 100644
--- a/build-aux/Jenkinsfile
+++ b/build-aux/Jenkinsfile
@@ -19,19 +19,19 @@ DOCKER_IMAGE_BASE =
'apache/couchdbci-debian:bookworm-erlang'
// Erlang version embedded in binary packages. Also the version most builds
// will run.
-ERLANG_VERSION = '26.2.5.20'
+ERLANG_VERSION = '27.3.4.13'
// Erlang version used for rebar in release process. CouchDB will not build
from
// the release tarball on Erlang versions older than this
-MINIMUM_ERLANG_VERSION = '26.2.5.20'
+MINIMUM_ERLANG_VERSION = '27.3.4.13'
// Highest support Erlang version.
-MAXIMUM_ERLANG_VERSION = '28.4.3'
+MAXIMUM_ERLANG_VERSION = '29.0.2'
// Test a min + 1 version. This is specially useful before we're about
// to bump the minimum version to at least make sure the CI image
// works.
-INTERMEDIATE_ERLANG_VERSION = '27.3.4.11'
+INTERMEDIATE_ERLANG_VERSION = '28.5.0.2'
// Default GNU Make Eunit Options for supported platforms
DEFAULT_GNU_MAKE_EUNIT_OPTS = '-j2 --output-sync=target'