mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Add chrome version 103
This commit is contained in:
parent
f71fe0261d
commit
36b798f72a
2 changed files with 4 additions and 7 deletions
|
|
@ -16,7 +16,7 @@ gitlab:
|
||||||
POSTGRESQL: ['11', '12', '13']
|
POSTGRESQL: ['11', '12', '13']
|
||||||
GOLANG: ['1.17', '1.18']
|
GOLANG: ['1.17', '1.18']
|
||||||
NODE: ['16.14']
|
NODE: ['16.14']
|
||||||
CHROME: ['94', '101']
|
CHROME: ['99', '101']
|
||||||
|
|
||||||
# Used by GitLab's compile-production-assets and compile-test-assets jobs
|
# Used by GitLab's compile-production-assets and compile-test-assets jobs
|
||||||
gitlab-assets:
|
gitlab-assets:
|
||||||
|
|
|
||||||
|
|
@ -45,18 +45,15 @@ function print_golang_args() {
|
||||||
# You may need to bump the version in scripts/install-chrome.
|
# You may need to bump the version in scripts/install-chrome.
|
||||||
function print_chrome_args() {
|
function print_chrome_args() {
|
||||||
case "$1" in
|
case "$1" in
|
||||||
94|94.0)
|
|
||||||
CHROME_VERSION=94.0.4606.81-1
|
|
||||||
;;
|
|
||||||
97|97.0)
|
|
||||||
CHROME_VERSION=97.0.4692.99-1
|
|
||||||
;;
|
|
||||||
99|99.0)
|
99|99.0)
|
||||||
CHROME_VERSION=99.0.4844.74-1
|
CHROME_VERSION=99.0.4844.74-1
|
||||||
;;
|
;;
|
||||||
101|101.0)
|
101|101.0)
|
||||||
CHROME_VERSION=101.0.4951.64-1
|
CHROME_VERSION=101.0.4951.64-1
|
||||||
;;
|
;;
|
||||||
|
103|103.0)
|
||||||
|
CHROME_VERSION=103.0.5060.53-1
|
||||||
|
;;
|
||||||
*) echo "Unknown chrome version $1"; exit 1;
|
*) echo "Unknown chrome version $1"; exit 1;
|
||||||
esac
|
esac
|
||||||
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"
|
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue