Update chrome version in images

This commit is contained in:
Andrejs Cunskis 2022-05-12 13:07:33 +03:00
parent 8fa73e9819
commit 9cd59387cd
No known key found for this signature in database
GPG key ID: 87CB75083F227241
4 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@ customers:
- .build_and_push - .build_and_push
variables: variables:
LFS: '2.9' LFS: '2.9'
CHROME: '89' CHROME: '101'
NODE: '16.14' NODE: '16.14'
YARN: '1.22' YARN: '1.22'
POSTGRESQL: '10' POSTGRESQL: '10'
@ -19,7 +19,7 @@ customers-qa-assets:
extends: extends:
- .build_and_push - .build_and_push
variables: variables:
CHROME: '89' CHROME: '101'
NODE: '16.14' NODE: '16.14'
YARN: '1.22' YARN: '1.22'
DOCKER: '19.03.1' DOCKER: '19.03.1'

View file

@ -7,7 +7,7 @@ e2e-base:
GIT: '2.33' GIT: '2.33'
RUBY: '2.7' RUBY: '2.7'
BUNDLER: '2.3' BUNDLER: '2.3'
CHROME: '99' CHROME: '101'
extends: extends:
- .build_and_push - .build_and_push

View file

@ -5,7 +5,7 @@ gitlab-kas:
variables: variables:
GOLANG: '1.16' GOLANG: '1.16'
LFS: '2.9' LFS: '2.9'
CHROME: '89' CHROME: '101'
NODE: '14.15' NODE: '14.15'
YARN: '1.22' YARN: '1.22'
GRAPHICSMAGICK: '1.3.36' GRAPHICSMAGICK: '1.3.36'

View file

@ -42,10 +42,6 @@ function print_golang_args() {
# You may need to bump the version in scripts/install-chrome. # You may need to bump the version in scripts/install-chrome.
function print_chrome_args() { function print_chrome_args() {
case "$1" in case "$1" in
89|89.0)
CHROME_VERSION=89.0.4389.90-1
CHROME_DRIVER_VERSION=89.0.4389.23
;;
94|94.0) 94|94.0)
CHROME_VERSION=94.0.4606.81-1 CHROME_VERSION=94.0.4606.81-1
CHROME_DRIVER_VERSION=94.0.4606.113 CHROME_DRIVER_VERSION=94.0.4606.113
@ -58,6 +54,10 @@ function print_chrome_args() {
CHROME_VERSION=99.0.4844.74-1 CHROME_VERSION=99.0.4844.74-1
CHROME_DRIVER_VERSION=99.0.4844.51 CHROME_DRIVER_VERSION=99.0.4844.51
;; ;;
101|101.0)
CHROME_VERSION=101.0.4951.64-1
CHROME_DRIVER_VERSION=101.0.4951.41
;;
*) echo "Unknown chrome version $1"; exit 1; *) echo "Unknown chrome version $1"; exit 1;
esac esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION" printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"