Update chrome versions

Bump version in kas images
This commit is contained in:
Andrejs Cunskis 2022-10-05 09:27:30 +03:00
parent b44e0723c3
commit ed1776761c
No known key found for this signature in database
GPG key ID: 87CB75083F227241
5 changed files with 17 additions and 25 deletions

View file

@ -4,26 +4,24 @@ customers:
- .build_and_push
variables:
LFS: '2.9'
CHROME: '101'
CHROME: '106'
NODE: '16.14'
YARN: '1.22'
POSTGRESQL: '10'
RUBY: '2.7'
GIT: '2.33'
parallel:
matrix:
- RUBY: ['2.7']
GIT: ['2.33']
DOCKER: ['20.10.14', '']
- DOCKER: ['20.10.14', '']
# Used by customers-gitlab-com qa e2e test: https://gitlab.com/gitlab-org/customers-gitlab-com/-/blob/staging/.gitlab/ci/e2e.gitlab-ci.yml
customers-qa-assets:
extends:
- .build_and_push
variables:
CHROME: '101'
CHROME: '106'
NODE: '16.14'
YARN: '1.22'
DOCKER: '20.10.14'
parallel:
matrix:
- RUBY: ['2.7']
GIT: ['2.33']
RUBY: '2.7'
GIT: '2.33'

View file

@ -9,7 +9,7 @@ e2e:
BUNDLER: '2.3'
parallel:
matrix:
- RUBY: [ '2.7', '3.0' ]
- RUBY: ['2.7', '3.0']
# Image with ruby, bundler and docker
e2e-docker:
@ -23,10 +23,7 @@ e2e-chrome:
extends:
- e2e-docker
variables:
CHROME: '104'
parallel:
matrix:
- RUBY: ['2.7', '3.0']
CHROME: '106'
# Image used for running full e2e test suite
e2e-full:

View file

@ -16,7 +16,7 @@ gitlab:
POSTGRESQL: ['11', '12', '13']
GOLANG: ['1.18', '1.19']
NODE: ['16.14']
CHROME: ['101', '103']
CHROME: ['105', '106']
# Used by GitLab's compile-production-assets and compile-test-assets jobs
gitlab-assets:

View file

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

View file

@ -45,18 +45,15 @@ function print_golang_args() {
# You may need to bump the version in scripts/install-chrome.
function print_chrome_args() {
case "$1" in
99|99.0)
CHROME_VERSION=99.0.4844.74-1
;;
101|101.0)
CHROME_VERSION=101.0.4951.64-1
;;
103|103.0)
CHROME_VERSION=103.0.5060.114-1
;;
104|104.0)
CHROME_VERSION=104.0.5112.101-1
;;
105|105.0)
CHROME_VERSION=105.0.5195.125-1
;;
106|106.0)
CHROME_VERSION=106.0.5249.91-1
;;
*) echo "Unknown chrome version $1"; exit 1;
esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"