From cfc44f03869b13373946f6f76adc00e5a0539abb Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Thu, 8 Apr 2021 15:28:15 -0400 Subject: Use github in lieu of gerrit mirror The gerrit mirror is not always accessible behind corporate firewalls, thus changed the CSITs to use github instead. Also modified the script to only clone ci-management to /tmp if it does not already exist. Issue-ID: POLICY-3179 Change-Id: I9cac98b04e000d9365e05a1f2ca1c328fef14c6c Signed-off-by: Jim Hahn --- csit/run-project-csit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csit/run-project-csit.sh') diff --git a/csit/run-project-csit.sh b/csit/run-project-csit.sh index c3d67d9e..07b9dea2 100755 --- a/csit/run-project-csit.sh +++ b/csit/run-project-csit.sh @@ -150,7 +150,7 @@ mkdir ${WORKSPACE}/${PROJECT} cd ${WORKSPACE} # get the plan from git clone -if ! `git clone -b ${GERRIT_BRANCH} --single-branch git://gerrit-mirror-ap.onap.org/mirror/policy/${PROJECT}.git` ; then +if ! `git clone -b ${GERRIT_BRANCH} --single-branch https://github.com/onap/policy-${PROJECT}.git ${PROJECT}` ; then echo "repo not found: policy/${PROJECT}" exit 1 fi -- cgit 1.2.3-korg