[6.7] remove bootstrap cache, which is only for master (#32784)

(cherry picked from commit 985a988563)

6.7 backport of https://github.com/elastic/kibana/pull/32782
This commit is contained in:
Spencer 2019-03-08 09:18:19 -08:00 committed by GitHub
parent 106423d1dc
commit 5254c40e69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 16 deletions

View file

@ -5,7 +5,6 @@ set -e
# move to Kibana root
cd "$(dirname "$0")/.."
source src/dev/ci_setup/extract_bootstrap_cache.sh
source src/dev/ci_setup/setup.sh
case "$JOB" in

View file

@ -1,15 +0,0 @@
#!/usr/bin/env bash
set -e
###
### Extract the bootstrap cache that we create in the packer_cache.sh script
###
bootstrapCache="$HOME/.kibana/bootstrap_cache/master.tar"
if [ -f "$bootstrapCache" ]; then
echo "extracting bootstrap_cache from $bootstrapCache";
tar -xf "$bootstrapCache";
else
echo "bootstrap_cache missing";
exit 1;
fi