From 583426f9ec623825189362373fbd22152ae4bd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Wed, 5 Apr 2023 13:48:13 +0000 Subject: [PATCH] Support Bundler 2.4 --- .gitlab/ci/e2e.images.yml | 2 +- scripts/lib/custom-docker-build | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/e2e.images.yml b/.gitlab/ci/e2e.images.yml index 3c14ea5..dc9ad56 100644 --- a/.gitlab/ci/e2e.images.yml +++ b/.gitlab/ci/e2e.images.yml @@ -14,10 +14,10 @@ e2e: - .e2e variables: OS: "debian:bullseye" - BUNDLER: '2.3' parallel: matrix: - RUBY: ['2.7', '3.0', '3.1', '3.2'] + - BUNDLER: ['2.3', '2.4'] # Image with ruby, bundler and docker e2e-docker: diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index edfd9f3..461cd26 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -250,7 +250,10 @@ function print_bundler_args() { BUNDLER_VERSION=2.1.4 ;; 2.3) - BUNDLER_VERSION=2.3.15 + BUNDLER_VERSION=2.3.26 + ;; + 2.4) + BUNDLER_VERSION=2.4.10 ;; *) fail "Unknown bundler version $1" ;; esac