dovetail fix: set the parameter CI_DEBUG true to print logs 73/22373/1
authorMatthewLi <matthew.lijun@huawei.com>
Fri, 23 Sep 2016 06:38:57 +0000 (02:38 -0400)
committerMatthewLi <matthew.lijun@huawei.com>
Fri, 23 Sep 2016 06:42:10 +0000 (02:42 -0400)
JIRA: DOVETAIL-14

CI_DEBUG is used in dovetail tool to decide if print logs or not,
to set the CI_DEBUG true to print logs in jenkins, which makes it easy
to debug.

Change-Id: I487c9f53034212ca02a189362522889f09fe1ecd
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
jjb/dovetail/dovetail-ci-jobs.yml
jjb/dovetail/dovetail-run.sh

index 015c416..91362ef 100644 (file)
             description: 'Tag to pull docker image'
         - string:
             name: CI_DEBUG
-            default: 'false'
+            default: 'true'
             description: "Show debug output information"
 
     scm:
index c017650..2c85e46 100755 (executable)
@@ -33,7 +33,8 @@ if ! sudo iptables -C FORWARD -j RETURN 2> ${redirect} || ! sudo iptables -L FOR
 fi
 
 opts="--privileged=true --rm"
-envs="-v /var/run/docker.sock:/var/run/docker.sock"
+envs="-e CI_DEBUG=${CI_DEBUG} \
+      -v /var/run/docker.sock:/var/run/docker.sock"
 
 # Pull the image with correct tag
 echo "Dovetail: Pulling image opnfv/dovetail:${DOCKER_TAG}"