From 407e21ea49e365d4f7473c797b1b45ad4e893da8 Mon Sep 17 00:00:00 2001 From: "jose.lausuch" Date: Wed, 2 Dec 2015 15:24:59 +0100 Subject: Retrieve latest_stable bugfix in Functest jenkins job Change-Id: I9e6823de47156311a70798cbaf7cb1a11777df6a Signed-off-by: jose.lausuch --- jjb/functest/functest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'jjb') diff --git a/jjb/functest/functest.yml b/jjb/functest/functest.yml index 17a6db85f..53da3eec5 100644 --- a/jjb/functest/functest.yml +++ b/jjb/functest/functest.yml @@ -477,10 +477,10 @@ envs="INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP}" docker pull opnfv/functest:latest_stable echo "Functest: Running docker run command: docker run -i -e $envs opnfv/functest /bin/bash &" - docker run -i -e $envs opnfv/functest /bin/bash & + docker run -i -e $envs opnfv/functest:latest_stable /bin/bash & docker ps -a sleep 5 - container_id=$(docker ps -a | grep opnfv/functest | awk '{print $1}' | head -1) + container_id=$(docker ps | grep 'opnfv/functest:latest_stable' | awk '{print $1}' | head -1) echo "Container ID=${container_id}" if [ -z ${container_id} ]; then echo "Cannot find opnfv/functest container ID ${container_id}. Please check if it is existing." @@ -491,7 +491,7 @@ docker start ${container_id} sleep 5 docker ps - if [ $(docker ps | grep opnfv/functest | wc -l) == 0 ]; then + if [ $(docker ps | grep 'opnfv/functest:latest_stable' | wc -l) == 0 ]; then echo "The container opnfv/functest with ID=${container_id} has not been properly started. Exiting..." exit 1 fi -- cgit 1.2.3-korg