mirror of
https://github.com/elastic/kibana.git
synced 2025-04-19 23:39:42 -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 commit 399c50cc5c
)
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
|