From 0f6b58e1003437b7c7a1d1a194bfab072ae034fb Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Tue, 19 Oct 2021 22:36:31 +1000 Subject: [PATCH] Fix: Update init script to clone releng/builder 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 Change-Id: I3ae6277803e706429c77843131ab29a38bc5813d --- .../openstackUserData/jenkins-init-script/content | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jenkins-config/managed-config-files/openstackUserData/jenkins-init-script/content b/jenkins-config/managed-config-files/openstackUserData/jenkins-init-script/content index 427d613ac..b47d0ae43 100644 --- a/jenkins-config/managed-config-files/openstackUserData/jenkins-init-script/content +++ b/jenkins-config/managed-config-files/openstackUserData/jenkins-init-script/content @@ -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 + + -- 2.36.6