mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Removes Grunt abstraction from CI tasks (#85210) Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co> # Conflicts: # tasks/config/run.js # test/scripts/jenkins_ci_group.sh # test/scripts/jenkins_unit.sh * [CI] Set correct script execute permissions (#85475) Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
16 lines
548 B
Bash
Executable file
16 lines
548 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}" \
|
|
node scripts/functional_tests \
|
|
--debug --bail \
|
|
--kibana-install-dir "$KIBANA_INSTALL_DIR" \
|
|
--include-tag "ciGroup$CI_GROUP"
|
|
|
|
if [[ ! "$TASK_QUEUE_PROCESS_ID" && "$CI_GROUP" == "1" ]]; then
|
|
source test/scripts/jenkins_build_kbn_sample_panel_action.sh
|
|
./test/scripts/test/plugin_functional.sh
|
|
./test/scripts/test/example_functional.sh
|
|
./test/scripts/test/interpreter_functional.sh
|
|
fi
|