diff --git a/.gitlab/ci/e2e.images.yml b/.gitlab/ci/e2e.images.yml index b9121fd..10c7ac3 100644 --- a/.gitlab/ci/e2e.images.yml +++ b/.gitlab/ci/e2e.images.yml @@ -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: diff --git a/.gitlab/ci/gitlab.images.yml b/.gitlab/ci/gitlab.images.yml index 6cd342d..4d32659 100644 --- a/.gitlab/ci/gitlab.images.yml +++ b/.gitlab/ci/gitlab.images.yml @@ -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: diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index 12af8e7..5fad28f 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -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"