jibri: use storage.googleapis.com location for chromedriver

This is the place listed on
https://googlechromelabs.github.io/chrome-for-testing/
which would seem to be the least likely to silently break.
Currently, the edgedl.me.gvt1.com location is broken.

Signed-off-by: Kurt Garloff <kurt@garloff.de>
pull/1742/head
Kurt Garloff 9 months ago committed by GitHub
parent 1bbb4ab0b7
commit 8f84f2f916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      jibri/rootfs/usr/bin/install-chrome.sh

@ -33,7 +33,7 @@ else
fi
CHROMEDRIVER_ZIP="/tmp/chromedriver_linux64.zip"
curl -4Lso ${CHROMEDRIVER_ZIP} "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/${CHROMEDRIVER_RELEASE}/linux64/chromedriver-linux64.zip"
curl -4Lso ${CHROMEDRIVER_ZIP} "https://storage.googleapis.com/chrome-for-testing-public/${CHROMEDRIVER_RELEASE}/linux64/chromedriver-linux64.zip"
unzip ${CHROMEDRIVER_ZIP} -d /tmp/
mv /tmp/chromedriver-linux64/chromedriver /usr/bin/
chmod +x /usr/bin/chromedriver

Loading…
Cancel
Save