From 25b37e0ec09b6ac3448446c38ee60000265b3144 Mon Sep 17 00:00:00 2001 From: Spencer Date: Fri, 19 Jul 2019 21:24:48 -0700 Subject: [PATCH] Use kibana-ci-proxy-cache for chrome and gecko drivers (#41581) * [ci] download chromedriver and geckodriver through a caching proxy * restore chromedriver and geckodriver caching in bootstrap cache # Conflicts: # .ci/packer_cache.sh # src/dev/ci_setup/setup.sh --- src/dev/ci_setup/setup.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dev/ci_setup/setup.sh b/src/dev/ci_setup/setup.sh index b8451f0536f8dc..eef37ab82620a5 100755 --- a/src/dev/ci_setup/setup.sh +++ b/src/dev/ci_setup/setup.sh @@ -108,8 +108,9 @@ yarn config set yarn-offline-mirror "$cacheDir/yarn-offline-cache" yarnGlobalDir="$(yarn global bin)" export PATH="$PATH:$yarnGlobalDir" -# use a proxy to fetch geckodriver asset -export GECKODRIVER_CDNURL="https://us-central1-elastic-kibana-184716.cloudfunctions.net/geckodriver_cache" +# use a proxy to fetch chromedriver/geckodriver asset +export GECKODRIVER_CDNURL="https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache" +export CHROMEDRIVER_CDNURL="https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache" ### ### install dependencies