mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
12 lines
485 B
Bash
Executable file
12 lines
485 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source test/scripts/jenkins_test_setup_oss.sh
|
|
|
|
checks-reporter-with-killswitch "Functional tests / Group ${CI_GROUP}" yarn run grunt "run:functionalTests_ciGroup${CI_GROUP}";
|
|
|
|
if [ "$CI_GROUP" == "1" ]; then
|
|
source test/scripts/jenkins_build_kbn_tp_sample_panel_action.sh
|
|
yarn run grunt run:pluginFunctionalTestsRelease --from=source;
|
|
yarn run grunt run:exampleFunctionalTestsRelease --from=source;
|
|
yarn run grunt run:interpreterFunctionalTestsRelease;
|
|
fi
|