kibana/.ci/packer_cache.sh
Jonah Bull 3805703265 [ci] remove reference to non-existent phantom file (#29541)
Phantom support was removed recently, need to remove this reference as well
otherwise the `packer_cache` script fails when building new CI images.

Related: #27141, #27142
2019-01-29 12:38:01 -08: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;