From 3ed03bbecb4f810dd784abc6193374550e5c654b Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 20 Dec 2012 08:51:34 -0800 Subject: [PATCH] Clone from gerrit, fetch zuul refs from zuul. Zuul may not always have the commits needed for some jobs, and its branches may be in an unpredictable state, so only use zuul to fetch zuul refs. Re-set the origin to gerrit for any existing repos. Change-Id: Ia300922d2e1585dd8d73a2711a7a25f4f9edd0e1 Reviewed-on: https://review.openstack.org/18492 Reviewed-by: Jeremy Stanley Approved: James E. Blair Tested-by: Jenkins --- .../files/slave_scripts/gerrit-git-prep.sh | 19 ++++++++++--------- .../jenkins_job_builder/config/macros.yaml | 3 ++- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/modules/jenkins/files/slave_scripts/gerrit-git-prep.sh b/modules/jenkins/files/slave_scripts/gerrit-git-prep.sh index d1d1210c3e..615ff8a417 100755 --- a/modules/jenkins/files/slave_scripts/gerrit-git-prep.sh +++ b/modules/jenkins/files/slave_scripts/gerrit-git-prep.sh @@ -1,17 +1,17 @@ #!/bin/bash -e -REVIEW_SITE=$1 -GIT_SITE=$2 +GERRIT_SITE=$1 +ZUUL_SITE=$2 -if [ -z "$REVIEW_SITE" ] +if [ -z "$GERRIT_SITE" ] then - echo "The git site name (eg 'https://review.openstack.org') must be the first argument." + echo "The gerrit site name (eg 'https://review.openstack.org') must be the first argument." exit 1 fi -if [ -z "$GIT_SITE" ] +if [ -z "$ZUUL_SITE" ] then - echo "The git site name (eg 'http://zuul.openstack.org') must be the second argument." + echo "The zuul site name (eg 'http://zuul.openstack.org') must be the second argument." exit 1 fi @@ -23,21 +23,22 @@ fi if [ ! -z "$ZUUL_CHANGE" ] then - echo "Triggered by: $REVIEW_SITE/$ZUUL_CHANGE" + echo "Triggered by: $GERRIT_SITE/$ZUUL_CHANGE" fi set -x if [[ ! -e .git ]] then - git clone $GIT_SITE/p/$ZUUL_PROJECT . + git clone $GERRIT_SITE/p/$ZUUL_PROJECT . fi +git remote set-url origin $GERRIT_SITE/p/$ZUUL_PROJECT git remote update || git remote update # attempt to work around bug #925790 git reset --hard git clean -x -f -d -q if [ -z "$ZUUL_NEWREV" ] then - git fetch $GIT_SITE/p/$ZUUL_PROJECT $ZUUL_REF + git fetch $ZUUL_SITE/p/$ZUUL_PROJECT $ZUUL_REF git checkout FETCH_HEAD git reset --hard FETCH_HEAD git clean -x -f -d -q 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 ae2c0434b3..9cba100a20 100644 --- a/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml +++ b/modules/openstack_project/files/jenkins_job_builder/config/macros.yaml @@ -109,9 +109,10 @@ - shell: | #!/bin/bash -xe if [[ ! -e devstack-gate ]]; then - git clone http://zuul.openstack.org/p/openstack-infra/devstack-gate + git clone https://review.openstack.org/p/openstack-infra/devstack-gate else cd devstack-gate + git remote set-url origin https://review.openstack.org/p/openstack-infra/devstack-gate git remote update git reset --hard git clean -x -f