summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs/docs-rtd.yaml
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2017-02-20 12:38:20 -0500
committerAric Gardner <agardner@linuxfoundation.org>2017-02-20 12:40:46 -0500
commit8f28f2de1aa8a473be54295d58a2311b40617efb (patch)
treecbd53be571150655df10cf29d1e86872e6b849f5 /jjb/opnfvdocs/docs-rtd.yaml
parent71543a9e0f48e1c09ec3395479a44347ee77cf78 (diff)
fix for rtd verfiy
Do not recursively clone submodules rewrite submodule projects so that docs/ is project root so we do not build rst files not in docs/ Change-Id: I97d4ca915014dcf8923a44a0c31d3c27ac415885 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/opnfvdocs/docs-rtd.yaml')
-rw-r--r--jjb/opnfvdocs/docs-rtd.yaml13
1 files changed, 10 insertions, 3 deletions
diff --git a/jjb/opnfvdocs/docs-rtd.yaml b/jjb/opnfvdocs/docs-rtd.yaml
index 151b53550..d3d218786 100644
--- a/jjb/opnfvdocs/docs-rtd.yaml
+++ b/jjb/opnfvdocs/docs-rtd.yaml
@@ -56,7 +56,7 @@
default: https://gerrit.opnfv.org/gerrit/opnfvdocs
description: 'Git URL to use on this Jenkins Slave'
scm:
- - git-scm-with-submodules:
+ - git-scm-gerrit:
branch: '{branch}'
triggers:
@@ -69,12 +69,19 @@
builders:
- shell: |
+ git submodule update --init
if [ "$GERRIT_PROJECT" != "opnfvdocs" ]; then
cd docs/submodules/$GERRIT_PROJECT
git fetch origin $GERRIT_REFSPEC && git checkout FETCH_HEAD
- else
- git fetch origin $GERRIT_REFSPEC && git checkout FETCH_HEAD
fi
+ cd "$WORKSPACE"
+ for x in $(git submodule | awk '{{print $2}}');
+ do
+ cd "$x"
+ git filter-branch --subdirectory-filter docs/
+ cd -
+ done
+
- shell: |
sudo pip install virtualenv
virtualenv $WORKSPACE/venv