From: Luis Gomez Date: Tue, 23 Jul 2019 19:43:06 +0000 (-0700) Subject: Remove old /p/ in gerrit HTTP URL X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=c9ea845dc4bf8bc768b419093b1b28b7ef4dccec;p=releng%2Fbuilder.git Remove old /p/ in gerrit HTTP URL https://www.gerritcodereview.com/2.16.html#legacy-p-prefix-for-githttp-projects-is-removed Change-Id: I0936d411dbafb72e875f9148303ea1fa6edc051b Signed-off-by: Luis Gomez --- diff --git a/jjb/integration/integration-apex-run-tests.sh b/jjb/integration/integration-apex-run-tests.sh index 14f9f4a8a..a6a51127d 100644 --- a/jjb/integration/integration-apex-run-tests.sh +++ b/jjb/integration/integration-apex-run-tests.sh @@ -22,7 +22,7 @@ wget --progress=dot:mega ${ACTUAL_BUNDLE_URL} UNZIPPED_DIR=`dirname "$(unzip -qql ${BUNDLE} | head -n1 | tr -s ' ' | cut -d' ' -f5-)"` unzip -q ${BUNDLE} tar czf ${DISTRO_UNDER_TEST} ${UNZIPPED_DIR} -git clone https://gerrit.opnfv.org/gerrit/p/sdnvpn.git /tmp/sdnvpn +git clone https://gerrit.opnfv.org/gerrit/sdnvpn.git /tmp/sdnvpn pushd /tmp/sdnvpn; git fetch https://gerrit.opnfv.org/gerrit/sdnvpn refs/changes/93/63293/1 && git checkout FETCH_HEAD; popd /tmp/sdnvpn/odl-pipeline/lib/odl_reinstaller.sh --pod-config ${WORKSPACE}/node.yaml --odl-artifact ${DISTRO_UNDER_TEST} --ssh-key-file ~/.ssh/robot_id_rsa diff --git a/jjb/integration/integration-compare-distributions.sh b/jjb/integration/integration-compare-distributions.sh index 87ad52100..372001436 100644 --- a/jjb/integration/integration-compare-distributions.sh +++ b/jjb/integration/integration-compare-distributions.sh @@ -50,7 +50,7 @@ cd /tmp/ || exit unzip $NEW_DISTRO_BASENAME mv $BUNDLEFOLDER distro_new -git clone https://git.opendaylight.org/gerrit/p/integration/test.git +git clone https://git.opendaylight.org/gerrit/integration/test.git cd test/tools/distchanges || exit mkdir -p $WORKSPACE/archives diff --git a/jjb/integration/multipatch-distribution.sh b/jjb/integration/multipatch-distribution.sh index 87dd099f6..58454878a 100755 --- a/jjb/integration/multipatch-distribution.sh +++ b/jjb/integration/multipatch-distribution.sh @@ -132,7 +132,7 @@ do PROJECT_SHORTNAME="${PROJECT##*/}" # http://stackoverflow.com/a/3162500 PROJECTS+=("${PROJECT_SHORTNAME}") echo "1. cloning project ${PROJECT}" - git clone "https://git.opendaylight.org/gerrit/p/${PROJECT}" + git clone "https://git.opendaylight.org/gerrit/${PROJECT}" cd ${PROJECT_SHORTNAME} # For patch = controller=61/29761/5:45/29645/6, this gives 61/29761/5. CHECKOUT="$(echo ${patch} | cut -d\= -s -f 2 | cut -d\: -f 1)" @@ -191,7 +191,7 @@ if [ "${distribution_status}" == "not_included" ]; then echo "adding integration/distribution" PROJECTS+=(distribution) # clone distribution and add it as a module in root pom - git clone "https://git.opendaylight.org/gerrit/p/integration/distribution" + git clone "https://git.opendaylight.org/gerrit/integration/distribution" cd distribution git checkout "${DISTRIBUTION_BRANCH_TO_BUILD}" cd "${BUILD_DIR}"