Update to Chrome 98

Chrome 89 does not support Debian bullseye.
This commit is contained in:
Stan Hu 2022-02-10 12:29:35 -08:00
parent 1872ff455a
commit 122e14854a
No known key found for this signature in database
GPG key ID: 8D3931AD39CC7A20
2 changed files with 6 additions and 2 deletions

View file

@ -32,7 +32,7 @@ function print_golang_args() {
# 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/a/chromium.org/chromedriver/downloads.
# ChromeDriver supports this: https://sites.google.com/chromium.org/driver/downloads
# You may need to bump the version in scripts/install-chrome.
function print_chrome_args() {
case "$1" in
@ -76,6 +76,10 @@ function print_chrome_args() {
CHROME_VERSION=89.0.4389.90-1
CHROME_DRIVER_VERSION=89.0.4389.23
;;
98|98.0)
CHROME_VERSION=98.0.4758.80-1
CHROME_DRIVER_VERSION=98.0.4758.80
;;
*) echo "Unknown chrome version $1"; exit 1;
esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"