Script gate-saharaclient.sh call function from functions-common.sh, so we need to source this. Change-Id: Ica107cddfa57039d9bbcb940a59bc224e18fc014
13 lines
288 B
Bash
Executable File
13 lines
288 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
. $FUNCTION_PATH/functions-common.sh
|
|
|
|
sahara_path="/tmp/sahara"
|
|
get_dependency "$sahara_path" "openstack/sahara"
|
|
cd "$sahara_path"
|
|
|
|
tox -e scenario --notest
|
|
.tox/scenario/bin/pip install $WORKSPACE
|
|
|
|
$WORKSPACE/sahara-ci-config/slave-scripts/gate-sahara.sh "$sahara_path"
|