mirror of
https://github.com/elastic/kibana.git
synced 2025-04-20 07:48:52 -04:00
* Re-split ciGroups after pipeline rollout Revert "Revert "Revert "Revert "Revert "[ci] compress jobs for CI stab… (#45454)" This reverts commit9a109f2170
. Revert "set IS_PIPELINE_JOB in intake jobs (#45850)" This reverts commitb1a01effa8
. * Split one of the slow test suites up to try to make overall CI faster * Disable visualRegression groups, they are being handled in other work * Revert "Split one of the slow test suites up to try to make overall CI faster" This reverts commit1213239545
. * Move some different xpack ciGroup8 suites around # Conflicts: # x-pack/test/alerting_api_integration/security_and_spaces/tests/index.ts # x-pack/test/alerting_api_integration/spaces_only/tests/index.ts # x-pack/test/oidc_api_integration/apis/authorization_code_flow/index.js # x-pack/test/oidc_api_integration/apis/implicit_flow/index.ts # x-pack/test/pki_api_integration/apis/index.ts # x-pack/test/visual_regression/tests/maps/index.js
44 lines
947 B
Bash
Executable file
44 lines
947 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# move to Kibana root
|
|
cd "$(dirname "$0")/.."
|
|
|
|
source src/dev/ci_setup/load_env_keys.sh
|
|
source src/dev/ci_setup/extract_bootstrap_cache.sh
|
|
source src/dev/ci_setup/setup.sh
|
|
source src/dev/ci_setup/checkout_sibling_es.sh
|
|
|
|
case "$JOB" in
|
|
kibana-intake)
|
|
./test/scripts/jenkins_unit.sh
|
|
;;
|
|
kibana-ciGroup*)
|
|
export CI_GROUP="${JOB##kibana-ciGroup}"
|
|
./test/scripts/jenkins_ci_group.sh
|
|
;;
|
|
kibana-visualRegression*)
|
|
./test/scripts/jenkins_visual_regression.sh
|
|
;;
|
|
kibana-firefoxSmoke*)
|
|
./test/scripts/jenkins_firefox_smoke.sh
|
|
;;
|
|
x-pack-intake)
|
|
./test/scripts/jenkins_xpack.sh
|
|
;;
|
|
x-pack-ciGroup*)
|
|
export CI_GROUP="${JOB##x-pack-ciGroup}"
|
|
./test/scripts/jenkins_xpack_ci_group.sh
|
|
;;
|
|
x-pack-visualRegression*)
|
|
./test/scripts/jenkins_xpack_visual_regression.sh
|
|
;;
|
|
x-pack-firefoxSmoke*)
|
|
./test/scripts/jenkins_xpack_firefox_smoke.sh
|
|
;;
|
|
*)
|
|
echo "JOB '$JOB' is not implemented."
|
|
exit 1
|
|
;;
|
|
esac
|