This is an automated email from the ASF dual-hosted git repository.
nickva 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 8491b4417 Use updated CI images
8491b4417 is described below
commit 8491b4417bd7ff0fce80c09579f5c0d2ee590b33
Author: Nick Vatamaniuc <[email protected]>
AuthorDate: Tue Apr 21 23:10:26 2026 -0400
Use updated CI images
Latest Erlang patches and NodeJS updated to 24
Unfortunately Elixir stuck at 18.x for the time being there is an
issue with hex and newer Erlang 28 builds for some reason.
---
build-aux/Jenkinsfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/build-aux/Jenkinsfile b/build-aux/Jenkinsfile
index 1cc60dfd1..977a15d9b 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.17'
+ERLANG_VERSION = '26.2.5.20'
// 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.17'
+MINIMUM_ERLANG_VERSION = '26.2.5.20'
// Highest support Erlang version.
-MAXIMUM_ERLANG_VERSION = '28.3.2'
+MAXIMUM_ERLANG_VERSION = '28.4.3'
// 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.8'
+INTERMEDIATE_ERLANG_VERSION = '27.3.4.11'
// Default GNU Make Eunit Options for supported platforms
DEFAULT_GNU_MAKE_EUNIT_OPTS = '-j2 --output-sync=target'