Switch devstack checkout to use git.o.o

It was hitting review.o.o for the initial checkout of devstack-gate,
which occasionally fails.  Use git.o.o with the git protocol for
greater resiliency.

Change-Id: Ic45d0816ae5121acc12beb1d832f10a8745d15bf
This commit is contained in:
James E. Blair 2013-12-11 12:27:54 -08:00
parent 0b578727ed
commit 0c18639955

View File

@ -182,10 +182,10 @@
- shell: |
#!/bin/bash -xe
if [[ ! -e devstack-gate ]]; then
git clone https://review.openstack.org/p/openstack-infra/devstack-gate
git clone git://git.openstack.org/openstack-infra/devstack-gate
else
cd devstack-gate
git remote set-url origin https://review.openstack.org/p/openstack-infra/devstack-gate
git remote set-url origin git://git.openstack.org/openstack-infra/devstack-gate
git remote update
git reset --hard
if ! git clean -x -f ; then