summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs
diff options
context:
space:
mode:
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-01-05 11:24:57 +0100
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-01-05 10:28:58 +0000
commitce27221722b8ff15702e2884e839e4a39a4216e7 (patch)
tree4d5dfa239a34a9b7d0df060e7b7bb83a3fee3952 /jjb/opnfvdocs
parentf3ad4daa1c9e5cf2e1d4e27384780e03de137162 (diff)
Fix GIT_BASE for cloning standalone repos
GIT_BASE is set to <git_url>/<project> in default macros. In order not to cause issues for other parts of the job and the script, a new parameter GIT_CLONE_BASE has been introduced in order to clone repos for composite doc generation. Change-Id: I8ce0ea1e5324ce947a674b013cf7d169e6a9defe Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/opnfvdocs')
-rw-r--r--jjb/opnfvdocs/opnfvdocs.yml16
1 files changed, 14 insertions, 2 deletions
diff --git a/jjb/opnfvdocs/opnfvdocs.yml b/jjb/opnfvdocs/opnfvdocs.yml
index 25e546b39..b6b0b1caa 100644
--- a/jjb/opnfvdocs/opnfvdocs.yml
+++ b/jjb/opnfvdocs/opnfvdocs.yml
@@ -32,6 +32,10 @@
project: $GERRIT_PROJECT
- gerrit-parameter:
branch: '{branch}'
+ - string:
+ name: GIT_CLONE_BASE
+ default: ssh://gerrit.opnfv.org:29418
+ description: "Used for overriding the GIT URL coming from parameters macro."
scm:
- gerrit-trigger-scm:
@@ -76,6 +80,10 @@
- gerrit-parameter:
branch: '{branch}'
- string:
+ name: GIT_CLONE_BASE
+ default: ssh://gerrit.opnfv.org:29418
+ description: "Used for overriding the GIT URL coming from parameters macro."
+ - string:
name: GS_URL
default: '$GS_BASE{gs-pathname}'
description: "Directory where the build artifact will be located upon the completion of the build."
@@ -120,6 +128,10 @@
default: '$GS_BASE{gs-pathname}'
description: "Directory where the build artifact will be located upon the completion of the build."
- string:
+ name: GIT_CLONE_BASE
+ default: ssh://gerrit.opnfv.org:29418
+ description: "Used for overriding the GIT URL coming from parameters macro."
+ - string:
name: GERRIT_BRANCH
default: '{branch}'
description: 'Specify the branch in this way in order to be able to use clone-opnfv-repos builder.'
@@ -150,7 +162,7 @@
# clone releng repo to get repo list
cd $WORKSPACE
echo "Cloning releng repo"
- git clone $GIT_BASE/releng --quiet
+ git clone $GIT_CLONE_BASE/releng --quiet
# clone rest of the repos and checkout the branch
echo "Cloning repos of participating OPNFV Projects and checking out $GERRIT_BRANCH"
@@ -159,7 +171,7 @@
for repo in $(grep -v '^#' $WORKSPACE/releng/jjb/opnfvdocs/project.cfg | sort); do
cd $WORKSPACE
echo " $repo"
- git clone $GIT_BASE/$repo --branch $GERRIT_BRANCH --quiet
+ git clone $GIT_CLONE_BASE/$repo --branch $GERRIT_BRANCH --quiet
done
echo "--------------------------------------------------------"
echo