Add chrome v117 to the matrix

This commit is contained in:
Andrejs Cunskis 2023-09-26 15:13:37 +00:00 committed by Rémy Coutable
parent c91dd94d51
commit 5f2f0b0202
4 changed files with 23 additions and 11 deletions

View file

@ -77,10 +77,8 @@ function print_rust_args() {
printf -- "--build-arg INSTALL_RUST_VERSION=%s " "$INSTALL_RUST_VERSION"
}
# If you add a new minor version here, be sure to check that the
# Chrome versions can be found at https://www.ubuntuupdates.org/pm/google-chrome-stable.
# ChromeDriver supports this: https://sites.google.com/chromium.org/driver/downloads
# You may need to bump the version in scripts/install-chrome.
# Check https://gitlab.com/gitlab-org/gitlab-build-images/-/packages to see which versions have been cached
# Chromium version can sometimes lag behind so the versions have to be defined separately
function print_chrome_args() {
case "$1" in
109|109.0)
@ -99,6 +97,10 @@ function print_chrome_args() {
CHROME_VERSION=113.0.5672.126-1
CHROMIUM_VERSION=$CHROME_VERSION
;;
117|117.0)
CHROME_VERSION=117.0.5938.92-1
CHROMIUM_VERSION=117.0.5938.62-1
;;
*) fail "Unknown chrome version $1" ;;
esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"