Add chrome 113 version

This commit is contained in:
Andrejs Cunskis 2023-05-23 16:31:46 +03:00
parent f035933a1b
commit c7ba5ff86c
No known key found for this signature in database
GPG key ID: 87CB75083F227241
3 changed files with 6 additions and 2 deletions

View file

@ -34,7 +34,7 @@ e2e-chrome:
matrix:
- RUBY: ['2.7', '3.0', '3.1', '3.2']
BUNDLER: ['2.3', '2.4']
CHROME: ['109', '110']
CHROME: ['110', '113']
# Image used for running full e2e test suite
e2e-full:

View file

@ -29,7 +29,7 @@ gitlab:
GOLANG: ['1.19', '1.20']
RUST: ['1.65']
NODE: ['16.14', '18.16']
CHROME: ['109']
CHROME: ['109', '113']
# Used by GitLab's compile-production-assets and compile-test-assets jobs
gitlab-assets:

View file

@ -90,6 +90,10 @@ function print_chrome_args() {
CHROME_VERSION=111.0.5563.64-1
CHROMIUM_VERSION=$CHROME_VERSION
;;
113|113.0)
CHROME_VERSION=113.0.5672.126-1
CHROMIUM_VERSION=$CHROME_VERSION
;;
*) fail "Unknown chrome version $1" ;;
esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"