From e747940af24ee18ed13a76644a17716670eec524 Mon Sep 17 00:00:00 2001 From: Jonas De Keukelaere Date: Fri, 4 Feb 2022 10:08:33 +0000 Subject: [PATCH] Lock ChromeDriver to v97 Chromium on Debian is only at v97, Google Driver release is at 98 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5dc0a97..6816497 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -217,7 +217,7 @@ PHPUnit - Run tests: - apt-get --allow-releaseinfo-change update && apt-get install -y chromium # install Chromium Chromedriver - | - curl -s -f -L -o /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE_90`/chromedriver_linux64.zip + curl -s -f -L -o /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE_97`/chromedriver_linux64.zip unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/ # disable Xdebug and Blackfire extensions - |