kibana/.ci/run.sh
2018-11-12 13:23:55 -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