From: Victor Pickard Date: Tue, 13 Feb 2018 23:28:31 +0000 (-0500) Subject: Pin networking-l2gw client to specific version X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=5c3a8aa8060e9b06a1babf21be40fba863c76093;p=releng%2Fbuilder.git Pin networking-l2gw client to specific version The Robot VM was installing latest, which actually points to version: networking-l2gw-2016.1.0 But, the version we need is: networking-l2gw-11.0.0 In Pike and Queens CSIT, this resulted in neutron l2gw commands not being available. This will resolve that issue, still working other issues for pike/queens. Change-Id: I6214b799cfafcf3635579a5918d631dd56955a61 Signed-off-by: Victor Pickard --- diff --git a/jjb/integration/integration-deploy-openstack-run-test.sh b/jjb/integration/integration-deploy-openstack-run-test.sh index 303fdc6ae..db2253e9a 100644 --- a/jjb/integration/integration-deploy-openstack-run-test.sh +++ b/jjb/integration/integration-deploy-openstack-run-test.sh @@ -126,7 +126,7 @@ function install_openstack_clients_in_robot_vm() { if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then #networking-l2gw is not officially available in any release yet. Gettting the latest stable version. - $PYTHON -m pip install networking-l2gw + $PYTHON -m pip install networking-l2gw==11.0.0 fi }