From 0c18639955502ef5b81de72f332a227419ac0bce Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 11 Dec 2013 12:27:54 -0800 Subject: [PATCH] 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 --- .../files/jenkins_job_builder/config/macros.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml b/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml index bdf4a041b2..17f5fb3ac5 100644 --- a/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml +++ b/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml @@ -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