summaryrefslogtreecommitdiffstats
path: root/jjb/bottlenecks
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2016-04-25 22:34:05 -0400
committerMatthewLi <matthew.lijun@huawei.com>2016-04-26 04:53:20 -0400
commitffa4b2b300d81a4c9415d806b314e87bbcb64021 (patch)
tree78466267218e468768222eec49450c08e8519f89 /jjb/bottlenecks
parent7d03038f3fa3d8daefcf8cfff15afb2d86cdf47e (diff)
Bottlenecks: run env preparation inside the container
JIRA: BOTTLENECK-69 Change-Id: Ide9db53db0b517d54a3ccc5eddffd9b2b52120ea Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'jjb/bottlenecks')
-rw-r--r--jjb/bottlenecks/bottlenecks-ci-jobs.yml40
1 files changed, 24 insertions, 16 deletions
diff --git a/jjb/bottlenecks/bottlenecks-ci-jobs.yml b/jjb/bottlenecks/bottlenecks-ci-jobs.yml
index cd1d89a5c..9d881233d 100644
--- a/jjb/bottlenecks/bottlenecks-ci-jobs.yml
+++ b/jjb/bottlenecks/bottlenecks-ci-jobs.yml
@@ -114,7 +114,6 @@
builders:
- 'bottlenecks-env-cleanup'
- - 'bottlenecks-fetch-os-creds'
- 'bottlenecks-run-suite'
publishers:
@@ -125,12 +124,6 @@
# builder macros
########################
- builder:
- name: bottlenecks-fetch-os-creds
- builders:
- - shell:
- !include-raw ../../utils/fetch_os_creds.sh
-
-- builder:
name: bottlenecks-env-cleanup
builders:
- shell: |
@@ -162,21 +155,36 @@
set -e
[[ $GERRIT_REFSPEC_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
- echo "Bottlenecks: ${SUITE_NAME} running now..."
-
- # pull latest image
- docker pull opnfv/bottlenecks:$DOCKER_TAG >$redirect
+ echo "Bottlenecks: to pull image opnfv/bottlenecks:${DOCKER_TAG}"
+ docker pull opnfv/bottlenecks:$DOCKER_TAG >${redirect}
- # run tests by using docker
- opts="--privileged=true --rm"
+ echo "Bottlenecks: docker start running"
+ opts="--privileged=true -id"
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}"
+ cmd="sudo docker run ${opts} ${envs} opnfv/bottlenecks:${DOCKER_TAG} /bin/bash"
+ echo "Bottlenecks: docker cmd running ${cmd}"
+ ${cmd} >${redirect}
+
+ echo "Bottlenecks: obtain docker id"
+ container_id=$(docker ps | grep "opnfv/bottlenecks:${DOCKER_TAG}" | awk '{print $1}' | head -1)
+ if [ -z ${container_id} ]; then
+ echo "Cannot find opnfv/bottlenecks container ID ${container_id}. Please check if it exists."
+ docker ps -a
+ exit 1
+ fi
+
+ echo "Bottlenecks: to prepare openstack environment"
+ prepare_env="${REPO_DIR}/ci/prepare_env.sh"
+ echo "Bottlenecks: docker cmd running: ${prepare_env}"
+ sudo docker exec ${container_id} ${prepare_env}
+
+ echo "Bottlenecks: to run testsuite ${SUITE_NAME}"
run_testsuite="${REPO_DIR}/run_tests.sh -s ${SUITE_NAME}"
- cmd="sudo docker run ${opts} ${envs} opnfv/bottlenecks ${run_testsuite}"
- echo "Bottlenecks: docker cmd running: ${cmd}"
- ${cmd}
+ echo "Bottlenecks: docker cmd running: ${run_testsuite}"
+ sudo docker exec ${container_id} ${run_testsuite}
####################
# parameter macros