mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Backports the following commits to 6.7: - Refactor ES-related environment variables (#33036)
26 lines
535 B
Bash
Executable file
26 lines
535 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function report {
|
|
if [[ -z "$PR_SOURCE_BRANCH" ]]; then
|
|
node src/dev/failed_tests/cli
|
|
else
|
|
echo "Failure issues not created on pull requests"
|
|
|
|
fi
|
|
}
|
|
|
|
trap report EXIT
|
|
|
|
"$(FORCE_COLOR=0 yarn bin)/grunt" functionalTests:ensureAllTestsInCiGroup;
|
|
|
|
node scripts/build --debug --oss;
|
|
|
|
export TEST_BROWSER_HEADLESS=1
|
|
|
|
"$(FORCE_COLOR=0 yarn bin)/grunt" "run:functionalTests_ciGroup${CI_GROUP}";
|
|
|
|
if [ "$CI_GROUP" == "1" ]; then
|
|
"$(FORCE_COLOR=0 yarn bin)/grunt" run:pluginFunctionalTestsRelease;
|
|
fi
|