mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
18 lines
484 B
Bash
Executable file
18 lines
484 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
source .buildkite/scripts/common/util.sh
|
|
source .buildkite/scripts/common/env.sh
|
|
source .buildkite/scripts/common/setup_node.sh
|
|
|
|
export FORCE_BOOTSTRAP_REMOTE_CACHE=true
|
|
|
|
yarn kbn bootstrap
|
|
|
|
for version in $(cat versions.json | jq -r '.versions[].version'); do
|
|
node scripts/es snapshot --download-only --base-path "$ES_CACHE_DIR" --version "$version"
|
|
done
|
|
|
|
echo "--- Cloning repos for docs build"
|
|
node scripts/validate_next_docs --clone-only
|