diff --git a/.gitlab/ci/e2e.images.yml b/.gitlab/ci/e2e.images.yml index fae8f2a..7a5247d 100644 --- a/.gitlab/ci/e2e.images.yml +++ b/.gitlab/ci/e2e.images.yml @@ -33,7 +33,7 @@ e2e-chrome: parallel: matrix: - RUBY: ['2.7', '3.0'] - CHROME: ['106', '109'] + CHROME: ['109', '110'] # Image used for running full e2e test suite e2e-full: diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index 31a8072..4bc17ac 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -94,6 +94,10 @@ function print_chrome_args() { CHROME_VERSION=109.0.5414.119-1 CHROMIUM_VERSION=109.0.5414.74-2 ;; + 110|110.0) + CHROME_VERSION=110.0.5481.177-1 + CHROMIUM_VERSION=$CHROME_VERSION + ;; *) fail "Unknown chrome version $1" ;; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"