mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
* [ci] define matrix axes in code * [ci] add null exclude rule * [ci] make script executable * [ci] execute sub-scripts * [ci] simplify job variable name (cherry picked from commit399c50cc5c
) (cherry picked from commit9f57bc901c
)
19 lines
255 B
Bash
Executable file
19 lines
255 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# move to Kibana root
|
|
cd "$(dirname "$0")/.."
|
|
|
|
case "$JOB" in
|
|
"selenium")
|
|
./test/scripts/jenkins_selenium.sh
|
|
;;
|
|
"intake")
|
|
./test/scripts/jenkins_unit.sh
|
|
;;
|
|
*)
|
|
echo "JOB '$JOB' is not implemented."
|
|
exit 1
|
|
;;
|
|
esac
|