mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 08:19:33 -04:00
* [Reporting] Move code out of Legacy (#67904) * [Reporting] Move code out of Legacy * Elasticsearch is not a plugin dep * add data as plugin dependo * diff cleanup 1 * log the browser download * Update paths in outside code for new Reporting home * fix download test * add numeral typing for x-pack/test * Fix jest tests for np migration * Shorten import paths * remove this file, add typings to the node module * remove local typing that has been provided by node module * Add optional security plugin dep * revert conflicting apm typings removal * fix i18n * fix snakecase whitelist Co-authored-by: Joel Griffith <joel.griffith@elastic.co> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> # Conflicts: # .ci/packer_cache.sh # src/dev/code_coverage/ingest_coverage/__tests__/transforms.test.js # src/dev/code_coverage/ingest_coverage/integration_tests/mocks/jest-combined/coverage-summary-manual-mix.json # x-pack/plugins/reporting/server/export_types/printable_pdf/server/create_job/index.ts * Add back in legacy bwc route * Kill code_coverage since it's not supposed to be here... Co-authored-by: Tim Sullivan <tsullivan@users.noreply.github.com>
60 lines
2 KiB
Bash
Executable file
60 lines
2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
branch="$(git rev-parse --abbrev-ref HEAD 2> /dev/null)"
|
|
|
|
# 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;
|
|
node scripts/es snapshot --license=oss --download-only;
|
|
|
|
# download reporting browsers
|
|
(cd "x-pack" && yarn gulp prepare);
|
|
|
|
# cache the chromedriver archive
|
|
chromedriverDistVersion="$(node -e "console.log(require('chromedriver').version)")"
|
|
chromedriverPkgVersion="$(node -e "console.log(require('./package.json').devDependencies.chromedriver)")"
|
|
if [ -z "$chromedriverDistVersion" ] || [ -z "$chromedriverPkgVersion" ]; then
|
|
echo "UNABLE TO DETERMINE CHROMEDRIVER VERSIONS"
|
|
exit 1
|
|
fi
|
|
mkdir -p .chromedriver
|
|
curl "https://chromedriver.storage.googleapis.com/$chromedriverDistVersion/chromedriver_linux64.zip" > .chromedriver/chromedriver.zip
|
|
echo "$chromedriverPkgVersion" > .chromedriver/pkgVersion
|
|
|
|
# cache the geckodriver archive
|
|
geckodriverPkgVersion="$(node -e "console.log(require('./package.json').devDependencies.geckodriver)")"
|
|
if [ -z "$geckodriverPkgVersion" ]; then
|
|
echo "UNABLE TO DETERMINE geckodriver VERSIONS"
|
|
exit 1
|
|
fi
|
|
mkdir -p ".geckodriver"
|
|
cp "node_modules/geckodriver/geckodriver.tar.gz" .geckodriver/geckodriver.tar.gz
|
|
echo "$geckodriverPkgVersion" > .geckodriver/pkgVersion
|
|
|
|
# archive cacheable directories
|
|
mkdir -p "$HOME/.kibana/bootstrap_cache"
|
|
tar -cf "$HOME/.kibana/bootstrap_cache/$branch.tar" \
|
|
node_modules \
|
|
packages/*/node_modules \
|
|
x-pack/node_modules \
|
|
x-pack/legacy/plugins/*/node_modules \
|
|
x-pack/plugins/reporting/.chromium \
|
|
test/plugin_functional/plugins/*/node_modules \
|
|
examples/*/node_modules \
|
|
.es \
|
|
.chromedriver \
|
|
.geckodriver;
|
|
|
|
echo "created $HOME/.kibana/bootstrap_cache/$branch.tar"
|
|
|
|
if [ "$branch" == "master" ]; then
|
|
echo "Creating bootstrap cache for 7.x";
|
|
|
|
git clone https://github.com/elastic/kibana.git --branch 7.x --depth 1 /tmp/kibana-7.x
|
|
(cd /tmp/kibana-7.x && ./.ci/packer_cache.sh);
|
|
rm -rf /tmp/kibana-7.x;
|
|
fi
|