kibana/.ci/packer_cache.sh
Spencer 29fa09bb6f
[6.8] Use kibana-ci-proxy-cache for chrome and gecko drivers (… (#41633)
* 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

* remove some extra changes
2019-07-20 01:53:26 -07:00

25 lines
597 B
Bash
Executable file

#!/usr/bin/env bash
set -e
# run setup script that gives us node, yarn, and bootstraps the project
source src/dev/ci_setup/setup.sh;
# download es snapshots
node scripts/es snapshot --download-only;
# download reporting browsers
cd "x-pack";
yarn gulp prepare;
cd -;
# archive cacheable directories
mkdir -p "$HOME/.kibana/bootstrap_cache"
tar -cf "$HOME/.kibana/bootstrap_cache/master.tar" \
node_modules \
packages/*/node_modules \
x-pack/node_modules \
x-pack/plugins/*/node_modules \
x-pack/plugins/reporting/.chromium \
test/plugin_functional/plugins/*/node_modules \
.es;