This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch use-elixir-14 in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git
commit c9673eee1c23677dcbf8246774541ef68a503ed8 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Wed May 24 17:35:37 2023 -0400 Use Elixir 14 Elixir 13 is not available for Erlang 26 so might as well jump to 14 everywhere. --- README.md | 2 +- bin/install-dependencies.sh | 2 +- bin/install-elixir.sh | 2 +- dockerfiles/almalinux-8 | 2 +- dockerfiles/almalinux-9 | 2 +- dockerfiles/centos-7 | 2 +- dockerfiles/debian-bullseye | 2 +- dockerfiles/debian-buster | 2 +- dockerfiles/ubuntu-bionic | 2 +- dockerfiles/ubuntu-focal | 2 +- dockerfiles/ubuntu-jammy | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8e0a01d..fe9a8d9 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ On the other hand, some OSes won't run older Erlangs because of library changes, Just specify on the command line any of the `ERLANGVERSION`, `NODEVERSION`, or `ELIXIRVERSION` environment variables: ``` -NODEVERSION=14 ELIXIRVERSION=v1.13.4 ERLANGVERSION=24.3.4.7 ./build.sh platform debian-jessie +NODEVERSION=14 ELIXIRVERSION=v1.14.5 ERLANGVERSION=24.3.4.7 ./build.sh platform debian-jessie ``` ## Building images for other architectures diff --git a/bin/install-dependencies.sh b/bin/install-dependencies.sh index 2218f3f..26d4684 100755 --- a/bin/install-dependencies.sh +++ b/bin/install-dependencies.sh @@ -31,7 +31,7 @@ set -e # Defaults updated 2023-03-20 NODEVERSION=${NODEVERSION:-14} ERLANGVERSION=${ERLANGVERSION:-24.3.4.10} -ELIXIRVERSION=${ELIXIRVERSION:-v1.13.4} +ELIXIRVERSION=${ELIXIRVERSION:-v1.14.5} # This works if we're not called through a symlink diff --git a/bin/install-elixir.sh b/bin/install-elixir.sh index eb1e499..79c4cd2 100755 --- a/bin/install-elixir.sh +++ b/bin/install-elixir.sh @@ -28,7 +28,7 @@ set -e -ELIXIR_VSN=${ELIXIRVERSION:-v1.13.4} +ELIXIR_VSN=${ELIXIRVERSION:-v1.14.5} ERLANG_VSN=`erl -noshell -eval 'io:fwrite(erlang:system_info(otp_release)), halt().'` # See https://github.com/hexpm/bob URL=https://repo.hex.pm/builds/elixir/${ELIXIR_VSN}-otp-${ERLANG_VSN}.zip diff --git a/dockerfiles/almalinux-8 b/dockerfiles/almalinux-8 index b205fdc..6938c97 100644 --- a/dockerfiles/almalinux-8 +++ b/dockerfiles/almalinux-8 @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/almalinux-9 b/dockerfiles/almalinux-9 index 0757401..8116cd1 100644 --- a/dockerfiles/almalinux-9 +++ b/dockerfiles/almalinux-9 @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/centos-7 b/dockerfiles/centos-7 index c72a686..e79ab92 100644 --- a/dockerfiles/centos-7 +++ b/dockerfiles/centos-7 @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/debian-bullseye b/dockerfiles/debian-bullseye index 4ef92c6..dbe3711 100644 --- a/dockerfiles/debian-bullseye +++ b/dockerfiles/debian-bullseye @@ -32,7 +32,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/debian-buster b/dockerfiles/debian-buster index d9fa19b..69f1c55 100644 --- a/dockerfiles/debian-buster +++ b/dockerfiles/debian-buster @@ -32,7 +32,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/ubuntu-bionic b/dockerfiles/ubuntu-bionic index 46c1952..697ee08 100644 --- a/dockerfiles/ubuntu-bionic +++ b/dockerfiles/ubuntu-bionic @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/ubuntu-focal b/dockerfiles/ubuntu-focal index 6f3f2ec..35d3b53 100644 --- a/dockerfiles/ubuntu-focal +++ b/dockerfiles/ubuntu-focal @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group diff --git a/dockerfiles/ubuntu-jammy b/dockerfiles/ubuntu-jammy index 63a1a15..abffd1a 100644 --- a/dockerfiles/ubuntu-jammy +++ b/dockerfiles/ubuntu-jammy @@ -30,7 +30,7 @@ ARG js=js ARG erlang=erlang # Select version of Node, Erlang and Elixir to install ARG erlangversion=24.3.4.10 -ARG elixirversion=v1.13.4 +ARG elixirversion=v1.14.5 ARG nodeversion=14 # Create Jenkins user and group
