Fix: Update init script to clone releng/builder 77/97977/1
authorAnil Belur <abelur@linuxfoundation.org>
Tue, 19 Oct 2021 12:36:31 +0000 (22:36 +1000)
committerAnil Belur <abelur@linuxfoundation.org>
Tue, 19 Oct 2021 12:43:29 +0000 (22:43 +1000)
The CR aff2a708c2a updated the jenkins-init script to be
picked up from global-jjb. However ODL requires openstack-hot
templates for CSIT stack creation and requires releng/builder
repo in /opt/ciman.

This should fix the issue with the CSIT stack creation
failures.

Issue-ID: https://jira.linuxfoundation.org/browse/RELENG-4014
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
Change-Id: I3ae6277803e706429c77843131ab29a38bc5813d

jenkins-config/managed-config-files/openstackUserData/jenkins-init-script/content

index 427d613ac94d570ee27e11a714113bf465ad12f3..b47d0ae437c0d3c5aa6b987813d38251cd81768e 100644 (file)
@@ -3,6 +3,7 @@ until host github.com &>/dev/null
 do
     echo "Waiting until github.com is resolvable..."
 done
-git clone https://github.com/lfit/releng-global-jjb.git /opt/ciman/global-jjb
+git clone --recursive https://github.com/opendaylight/releng-builder.git /opt/ciman
 /opt/ciman/global-jjb/jenkins-init-scripts/init.sh
-rm -rf /opt/ciman/releng-global-jjb/
\ No newline at end of file
+
+