mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
I don't think this is necessary, and since it's run before `bootstrap`, the Bazel tools aren't installed so it fails silently. Example: https://apm-ci.elastic.co/blue/organizations/jenkins/apm-ui%2Fapm-ui-e2e-tests-mbp%2FPR-89647/detail/PR-89647/21/pipeline/124/ Should fix APM E2E failures. Co-authored-by: Nathan L Smith <nathan.smith@elastic.co>
This commit is contained in:
parent
ccaded1d89
commit
656d844e80
1 changed files with 4 additions and 4 deletions
|
@ -1,13 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
set -ex
|
||||
set -e
|
||||
|
||||
E2E_DIR=x-pack/plugins/apm/e2e
|
||||
echo "1/2 Install dependencies ..."
|
||||
echo "1/2 Install dependencies..."
|
||||
# shellcheck disable=SC1091
|
||||
source src/dev/ci_setup/setup_env.sh true
|
||||
yarn kbn clean && yarn kbn bootstrap
|
||||
yarn kbn bootstrap
|
||||
|
||||
echo "2/2 Start Kibana ..."
|
||||
echo "2/2 Start Kibana..."
|
||||
## Might help to avoid FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
|
||||
export NODE_OPTIONS="--max-old-space-size=4096"
|
||||
nohup node ./scripts/kibana --no-base-path --no-watch --dev --no-dev-config --config ${E2E_DIR}/ci/kibana.e2e.yml > ${E2E_DIR}/kibana.log 2>&1 &
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue