Update to Chrome 99

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2022-03-16 19:07:39 +01:00
parent 7c233a185f
commit 54900fc18d
No known key found for this signature in database
GPG key ID: 4C514D15D07186F1
3 changed files with 6 additions and 6 deletions

View file

@ -44,9 +44,9 @@ function print_chrome_args() {
CHROME_VERSION=97.0.4692.99-1
CHROME_DRIVER_VERSION=97.0.4692.71
;;
98|98.0)
CHROME_VERSION=98.0.4758.80-1
CHROME_DRIVER_VERSION=98.0.4758.80
99|99.0)
CHROME_VERSION=99.0.4844.74-1
CHROME_DRIVER_VERSION=99.0.4844.51
;;
*) echo "Unknown chrome version $1"; exit 1;
esac

View file

@ -3,8 +3,8 @@
set -xeuo pipefail
IFS=$'\n\t'
CHROME_VERSION=${1:-97.0.4692.99-1}
CHROME_DRIVER_VERSION=${2:-97.0.4692.71}
CHROME_VERSION=${1:-99.0.4844.74-1}
CHROME_DRIVER_VERSION=${2:-99.0.4844.51}
# We hard code the URL rather than using $CI_API_V4_URL $CI_PROJECT_ID,
# because we would need to forward those variables
CHROME_DOWNLOAD_URL_BASE="https://gitlab.com/api/v4/projects/1075790/packages/generic/google-chrome-stable"