From: Markos Chandras Date: Tue, 20 Feb 2018 15:55:24 +0000 (+0000) Subject: xci: playbooks: run-functest: Collect functest results X-Git-Tag: 6.0.0~161^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F65%2F52365%2F1;p=releng-xci.git xci: playbooks: run-functest: Collect functest results Add a new volume to the docker container which will hold the results from the functest run. Change-Id: I70541a8337c9198a97304312adfab74d4dd06b70 Signed-off-by: Markos Chandras --- diff --git a/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 b/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 index 00892ed1..016df8ef 100644 --- a/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 +++ b/xci/playbooks/roles/run-functest/templates/run-functest.sh.j2 @@ -11,9 +11,11 @@ openstack --insecure subnet create --network {{ external_network }} \ --subnet-range {{ subnet_cidr }} --gateway {{ gateway_ip }} \ --no-dhcp {{ subnet_name }} +mkdir ~/results/ mkdir ~/images && cd ~/images && wget http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img && cd ~ sudo docker run --env-file env \ -v $(pwd)/openrc:/home/opnfv/functest/conf/env_file \ -v $(pwd)/images:/home/opnfv/functest/images \ + -v $(pwd)/results:/home/opnfv/functest/results \ opnfv/functest-healthcheck