diff options
Diffstat (limited to 'ci/verify-build.sh')
-rwxr-xr-x | ci/verify-build.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ci/verify-build.sh b/ci/verify-build.sh index 0477e17..c98fea4 100755 --- a/ci/verify-build.sh +++ b/ci/verify-build.sh @@ -19,7 +19,12 @@ export CARBON_DIR=${ci}/job/carbon/ ${ci}/remove_docker_container.sh mkdir -p ${CARBON_DIR} -touch ${ENV_FILE} +cat << EOF > ${ENV_FILE} +OS_USERNAME=username +OS_PASSWORD=password +OS_AUTH_URL=http://localhost +OS_PROJECT_NAME=project +EOF if [ -z $ARCH ] then @@ -60,7 +65,7 @@ set +e check_for_life storperf-httpfrontend "/" FAILURES=$((FAILURES + $?)) -check_for_life storperf-master "/api/v1.0/configurations" +check_for_life storperf-master "/api/v1.0/jobs" FAILURES=$((FAILURES + $?)) check_for_life storperf-reporting "/reporting/" |