Merge branch 'update-chromedriver' into 'master'

Update chromedriver to v2.32

See merge request gitlab-org/gitlab-build-images!59
This commit is contained in:
Stan Hu 2017-10-03 21:41:53 +00:00
commit 32293450ed
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ function print_golang_args() {
function print_chrome_args() {
case "$1" in
60|60.0) CHROME_VERSION=60.0.3112.90-1 ;;
61|61.0) CHROME_VERSION=61.0.3163.91-1 ;;
61|61.0) CHROME_VERSION=61.0.3163.100-1 ;;
*) echo "Unknown chrome version $1"; exit 1;
esac
printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"

View file

@ -12,6 +12,6 @@ env DEBIAN_FRONTEND="noninteractive" apt-get install -y google-chrome-stable=$CH
rm -rf /var/lib/apt/lists/*
# Install ChromeDriver
wget -q https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip
wget -q https://chromedriver.storage.googleapis.com/2.32/chromedriver_linux64.zip
unzip chromedriver_linux64.zip -d /usr/local/bin
rm -f chromedriver_linux64.zip