summaryrefslogtreecommitdiffstats
path: root/jjb/functest
diff options
context:
space:
mode:
authorFatih Degirmenci <fdegir@gmail.com>2018-02-05 10:52:04 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-05 10:52:04 +0000
commit3fd9fd53bbcd887a3189bc276408806f8ee8d64b (patch)
tree643e320338c85e9ad1a840dc6eeeaf6788f74749 /jjb/functest
parent9c0a34eba94f87c6c5a02c52ccc521e9d5a6f4e8 (diff)
parente2314e4c04a315c6db05985c489dba7827fff6cc (diff)
Merge "Set TEST_DB_URL in env"
Diffstat (limited to 'jjb/functest')
-rwxr-xr-xjjb/functest/functest-alpine.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh
index b5db2ed37..e7171f035 100755
--- a/jjb/functest/functest-alpine.sh
+++ b/jjb/functest/functest-alpine.sh
@@ -4,6 +4,8 @@ set -e
set +u
set +o pipefail
+TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results
+
check_os_deployment() {
FUNCTEST_IMAGE=opnfv/functest-healthcheck:${DOCKER_TAG}
echo "Functest: Pulling Functest Docker image ${FUNCTEST_IMAGE} ..."
@@ -145,7 +147,8 @@ test -f ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG} && custom_params=$(ca
envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \
-e NODE_NAME=${NODE_NAME} -e DEPLOY_SCENARIO=${DEPLOY_SCENARIO} \
- -e BUILD_TAG=${BUILD_TAG} -e DEPLOY_TYPE=${DEPLOY_TYPE}"
+ -e BUILD_TAG=${BUILD_TAG} -e DEPLOY_TYPE=${DEPLOY_TYPE} \
+ -e TEST_DB_URL=${TEST_DB_URL}"
ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"