mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
14 lines
353 B
Bash
Executable file
14 lines
353 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd "$KIBANA_DIR"
|
|
source src/dev/ci_setup/setup_env.sh
|
|
|
|
if [[ ! "$TASK_QUEUE_PROCESS_ID" ]]; then
|
|
./test/scripts/jenkins_build_plugins.sh
|
|
fi
|
|
|
|
# doesn't persist, also set in kibanaPipeline.groovy
|
|
export KBN_NP_PLUGINS_BUILT=true
|
|
|
|
echo " -> Ensuring all functional tests are in a ciGroup"
|
|
node scripts/ensure_all_tests_in_ci_group
|