mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
* [kbn/pm] rewrite to avoid needing a build process * uncomment timing reporting * throw in a few missing comments * Update README.md * remove extra SomeDevLog interface from ci-stats-core * remove non-stdio logging from bazel_runner, improve output formatting * use private fields instead of just ts private props * promote args to a positional arg * optionally require the ci-stats-reporter after each command * allow opt-ing out of vscode config management * reduce to a single import * add bit of docs regarding weird imports and package deps of kbn/pm * clean extraDirs from Kibana's package.json file too * tweak logging of run-in-packages to use --quiet and not just CI=true * remove unlazy-loader * add readme for @kbn/yarn-lock-validator * convert @kbn/some-dev-logs docs to mdx * remove missing navigation id and fix id in dev-cli-runner docs * fix title of some-dev-logs docs page * typo
22 lines
844 B
Bash
Executable file
22 lines
844 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
export DISABLE_BOOTSTRAP_VALIDATION=false
|
|
.buildkite/scripts/bootstrap.sh
|
|
|
|
.buildkite/scripts/steps/checks/precommit_hook.sh
|
|
.buildkite/scripts/steps/checks/ftr_configs.sh
|
|
.buildkite/scripts/steps/checks/bazel_packages.sh
|
|
.buildkite/scripts/steps/checks/telemetry.sh
|
|
.buildkite/scripts/steps/checks/ts_projects.sh
|
|
.buildkite/scripts/steps/checks/jest_configs.sh
|
|
.buildkite/scripts/steps/checks/plugin_list_docs.sh
|
|
.buildkite/scripts/steps/checks/bundle_limits.sh
|
|
.buildkite/scripts/steps/checks/i18n.sh
|
|
.buildkite/scripts/steps/checks/file_casing.sh
|
|
.buildkite/scripts/steps/checks/licenses.sh
|
|
.buildkite/scripts/steps/checks/plugins_with_circular_deps.sh
|
|
.buildkite/scripts/steps/checks/verify_notice.sh
|
|
.buildkite/scripts/steps/checks/test_projects.sh
|
|
.buildkite/scripts/steps/checks/test_hardening.sh
|