kibana/.ci/run.sh
Spencer 9eac7f9d69 [ci] define matrix axes in code (#25360)
* [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)
(cherry picked from commit 9f57bc901c)
2018-11-12 13:30:57 -08:00

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