From 11df180825bcea7aeae1e75155d5edc6fd5ffecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Thu, 17 Mar 2022 17:39:30 +0100 Subject: [PATCH] Add support for Chrome 94 in GitLab images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- .gitlab/ci/gitlab.images.yml | 2 +- scripts/custom-docker-build | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/gitlab.images.yml b/.gitlab/ci/gitlab.images.yml index 8e46c99..c824609 100644 --- a/.gitlab/ci/gitlab.images.yml +++ b/.gitlab/ci/gitlab.images.yml @@ -2,7 +2,6 @@ .gitlab-matrix: variables: LFS: '2.9' - CHROME: '99' YARN: '1.22' GRAPHICSMAGICK: '1.3.36' parallel: @@ -13,6 +12,7 @@ POSTGRESQL: ['11', '12', '13'] GOLANG: ['1.16', '1.17'] NODE: ['14.15', '16.14'] + CHROME: ['94', '99'] gitlab test: extends: diff --git a/scripts/custom-docker-build b/scripts/custom-docker-build index d3f7c54..0cd5aef 100755 --- a/scripts/custom-docker-build +++ b/scripts/custom-docker-build @@ -40,6 +40,10 @@ function print_chrome_args() { CHROME_VERSION=89.0.4389.90-1 CHROME_DRIVER_VERSION=89.0.4389.23 ;; + 94|94.0) + CHROME_VERSION=94.0.4606.81-1 + CHROME_DRIVER_VERSION=94.0.4606.113 + ;; 97|97.0) CHROME_VERSION=97.0.4692.99-1 CHROME_DRIVER_VERSION=97.0.4692.71