From 7807edf17d889c287cfa8490e4efd4c5c306aa20 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Sat, 7 Apr 2018 22:46:23 -0700 Subject: [PATCH] Bump Chrome to V65 and upgrade Chromedriver 2.36 --- .gitlab-ci.yml | 1 + scripts/custom-docker-build | 1 + scripts/install-chrome | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d8c213d..0fbd451 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -63,6 +63,7 @@ ruby-2.3-golang-1.10-git-2.16 test: *test_custom ruby-2.3.7-golang-1.9-git-2.14-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom ruby-2.3.7-golang-1.9-git-2.16-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom ruby-2.3.7-golang-1.9-git-2.17-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom +ruby-2.3.7-golang-1.9-git-2.17-chrome-65.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom golang-1.8.6-git-2.9.0 test: *test_custom golang-1.8.6-git-2.14 test: *test_custom golang-1.9-git-2.9.0 test: *test_custom diff --git a/scripts/custom-docker-build b/scripts/custom-docker-build index a3c56d8..3614469 100755 --- a/scripts/custom-docker-build +++ b/scripts/custom-docker-build @@ -35,6 +35,7 @@ function print_chrome_args() { 62|62.0) CHROME_VERSION=62.0.3202.89-1 ;; 63|63.0) CHROME_VERSION=63.0.3239.132-1 ;; 64|64.0) CHROME_VERSION=64.0.3282.186-1 ;; + 65|65.0) CHROME_VERSION=65.0.3325.181-1 ;; *) echo "Unknown chrome version $1"; exit 1; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION" diff --git a/scripts/install-chrome b/scripts/install-chrome index 5db385e..e0d879c 100755 --- a/scripts/install-chrome +++ b/scripts/install-chrome @@ -31,6 +31,6 @@ fi rm -rf /var/lib/apt/lists/* # Install ChromeDriver -wget -q https://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip +wget -q https://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip unzip chromedriver_linux64.zip -d /usr/local/bin rm -f chromedriver_linux64.zip