98fc15e111
the same job is now gating in openstack infrastructure Change-Id: Ie93cc2b9e5ea4c956632573e076beca122679db6
101 lines
3.2 KiB
Bash
Executable File
101 lines
3.2 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# source CI credentials
|
|
. /home/jenkins/ci_openrc
|
|
# source main functions
|
|
. $FUNCTION_PATH/functions-common.sh
|
|
|
|
CLUSTER_HASH=${CLUSTER_HASH:-$RANDOM}
|
|
cluster_name="$HOST-$ZUUL_CHANGE-$CLUSTER_HASH"
|
|
|
|
SAHARA_PATH=${1:-$WORKSPACE}
|
|
SAHARA_TESTS_PATH=${2:-"/tmp/sahara-tests"}
|
|
sahara_conf_file=$SAHARA_PATH/etc/sahara/sahara.conf
|
|
sahara_templates_path=$SAHARA_TESTS_PATH/sahara_tests/scenario/defaults
|
|
tests_etc=$sahara_templates_path
|
|
|
|
# Clone Sahara Scenario tests
|
|
if [ "$ZUUL_PROJECT" != "openstack/sahara-tests" ]; then
|
|
get_dependency "$SAHARA_TESTS_PATH" "openstack/sahara-tests" "master"
|
|
fi
|
|
|
|
plugin=$(echo $JOB_NAME | awk -F '-' '{ print $3 }')
|
|
os=$(echo $JOB_NAME | awk -F '-' '{ print $4 }')
|
|
image_name=${plugin}_${os}
|
|
mode="aio"
|
|
sahara_plugin=$(echo $plugin | awk -F '_' '{ print $1 } ')
|
|
|
|
case $ZUUL_BRANCH in
|
|
stable/liberty)
|
|
sahara_templates_path="$sahara_templates_path/liberty"
|
|
;;
|
|
stable/mitaka)
|
|
sahara_templates_path="$sahara_templates_path/mitaka"
|
|
;;
|
|
esac
|
|
|
|
case $plugin in
|
|
ambari_2.3)
|
|
mode=distribute
|
|
scenario_conf_file="$sahara_templates_path/ambari-2.3.yaml.mako"
|
|
template_image_prefix="ambari_2_2"
|
|
image_name="ambari_2.2_c7"
|
|
;;
|
|
ambari_2.4)
|
|
mode=distribute
|
|
scenario_conf_file="$sahara_templates_path/ambari-2.4.yaml.mako"
|
|
template_image_prefix="ambari_2_2"
|
|
image_name="ambari_2.2_c7"
|
|
;;
|
|
vanilla_2.7.1)
|
|
mode=distribute
|
|
scenario_conf_file="$sahara_templates_path/vanilla-2.7.1.yaml.mako"
|
|
template_image_prefix="vanilla_two_seven_one"
|
|
;;
|
|
transient)
|
|
# transient is using image with latest vanilla version
|
|
image_name=vanilla_2.7.1_u14
|
|
template_image_prefix="vanilla_two_seven_one"
|
|
sahara_plugin=vanilla
|
|
concurrency=3
|
|
mode=distribute
|
|
scenario_conf_file="$sahara_templates_path/transient.yaml.mako"
|
|
;;
|
|
cdh_5.4.0)
|
|
scenario_conf_file="$sahara_templates_path/cdh-5.4.0.yaml.mako"
|
|
template_image_prefix="cdh_5_4_0"
|
|
;;
|
|
cdh_5.5.0)
|
|
scenario_conf_file="$sahara_templates_path/cdh-5.5.0.yaml.mako"
|
|
template_image_prefix="cdh_5_5_0"
|
|
;;
|
|
cdh_5.7.0)
|
|
scenario_conf_file="$sahara_templates_path/cdh-5.7.0.yaml.mako"
|
|
template_image_prefix="cdh_5_7_0"
|
|
;;
|
|
spark_1.3.1)
|
|
scenario_conf_file="$sahara_templates_path/spark-1.3.1.yaml.mako"
|
|
template_image_prefix="spark_1_3"
|
|
;;
|
|
spark_1.6.0)
|
|
scenario_conf_file="$sahara_templates_path/spark-1.6.0.yaml.mako"
|
|
template_image_prefix="spark_1_6"
|
|
;;
|
|
mapr_5.1.0.mrv2)
|
|
mode=distribute
|
|
scenario_conf_file="$sahara_templates_path/mapr-5.1.0.mrv2.yaml.mako"
|
|
template_image_prefix="mapr_510mrv2"
|
|
;;
|
|
storm_1.0.1)
|
|
scenario_conf_file="$sahara_templates_path/storm-1.0.1.yaml.mako"
|
|
template_image_prefix="storm_1_0"
|
|
;;
|
|
esac
|
|
|
|
sudo pip install -r requirements.txt . --no-cache-dir
|
|
enable_pypi
|
|
write_sahara_main_conf "$sahara_conf_file" "$sahara_plugin"
|
|
write_tests_conf "$cluster_name" "$template_image_prefix" "$image_name" "$scenario_conf_file"
|
|
start_sahara "$sahara_conf_file" "$mode" && run_tests "$scenario_conf_file" "$concurrency"
|
|
print_python_env
|