Update introspection pinning for oooq CI to use JQ based script

See here for more details
https://review.openstack.org/#/c/437946/

The reason the old pin isn't working is that --bootstrap in quickstart
doesn't work like it should and force the reinstallation of the virtualenv
so we carry over the prep internal script that now uses extras itself.

Change-Id: I5479738565017941df71313f10816f2c9a4debea
This commit is contained in:
jkilpatr 2017-02-24 17:49:35 -05:00
parent 0261ba337b
commit d1a617f5dc

View File

@ -3,7 +3,12 @@ set -eu
pushd $WORKSPACE
pushd $WORKSPACE/tripleo-quickstart-extras
git fetch git://git.openstack.org/openstack/tripleo-quickstart-extras refs/changes/77/403677/13 && git checkout FETCH_HEAD
git fetch git://git.openstack.org/openstack/tripleo-quickstart-extras refs/changes/46/437946/1 && git checkout FETCH_HEAD
set +eu
source $WORKSPACE/bin/activate
pip uninstall -y tripleo-quickstart-extras
pip uninstall -y tripleo-internal-environments
set -eu
popd
popd