summaryrefslogtreecommitdiffstats
path: root/ci/rubbos_docker_run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/rubbos_docker_run.sh')
-rwxr-xr-xci/rubbos_docker_run.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/ci/rubbos_docker_run.sh b/ci/rubbos_docker_run.sh
deleted file mode 100755
index 2eb3e16c..00000000
--- a/ci/rubbos_docker_run.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-##############################################################################
-# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-set -ex
-
-docker build -t opnfv/bottlenecks ${BOTTLENECKS_TOP_DIR}/ci/docker/
-
-if [ x"${GERRIT_REFSPEC_DEBUG}" != x ]; then
- opts="--privileged=true"
- BOTTLENECKS_BRANCH=${GERRIT_REFSPEC_DEBUG}
-else
- opts="--privileged=true --rm"
- BOTTLENECKS_BRANCH=${GIT_BRANCH##origin/}
-fi
-
-envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} -e NODE_NAME=${NODE_NAME} -e EXTERNAL_NET=${EXTERNAL_NETWORK} -e BOTTLENECKS_BRANCH=${BOTTLENECKS_BRANCH} -e GERRIT_REFSPEC_DEBUG=${GERRIT_REFSPEC_DEBUG} -e BOTTLENECKS_DB_TARGET=${BOTTLENECKS_DB_TARGET} -e PACKAGE_URL=${PACKAGE_URL}"
-volumes="-v ${BOTTLENECKS_TOP_DIR}:${BOTTLENECKS_TOP_DIR}"
-run_rubbos_testsuite=${BOTTLENECKS_TOP_DIR}/run_tests.sh -s rubbos
-
-echo ${envs} ${ops} ${volumes}
-
-# Run docker
-cmd="sudo docker run ${opts} ${envs} ${volumes} opnfv/bottlenecks ${run_rubbos_testsuite}"
-echo "Bottlenecks: Running docker cmd: ${cmd}"
-${cmd}
-
-echo "Bottlenecks: done!"
-
-set +ex