summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2016-01-07 23:27:47 +0900
committerRyota MIBU <r-mibu@cq.jp.nec.com>2016-01-08 09:07:10 +0900
commit3684e872b25194e5289810d4ad83231c99d063df (patch)
treeff0fc6b9326f317e9613eca75286ac67f2e68ec5 /jjb/opnfvdocs
parent062184b5027b9c3ea210ae1783b8c06651f02c4c (diff)
update opnfvdocs jjb to use build-composite.sh
Note: https://gerrit.opnfv.org/gerrit/5791 have to be merged first. Change-Id: I1b6f3e6bf20b955c68123a5dc3a334e538bc53f6 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Diffstat (limited to 'jjb/opnfvdocs')
-rw-r--r--jjb/opnfvdocs/opnfvdocs.yml67
1 files changed, 8 insertions, 59 deletions
diff --git a/jjb/opnfvdocs/opnfvdocs.yml b/jjb/opnfvdocs/opnfvdocs.yml
index 94ca6fc43..c4fa73468 100644
--- a/jjb/opnfvdocs/opnfvdocs.yml
+++ b/jjb/opnfvdocs/opnfvdocs.yml
@@ -66,8 +66,7 @@
pattern: 'docs/**'
builders:
- - clone-opnfv-repos
- - build-html-and-pdf-docs-output
+ - build-opnfv-composite-docs
- upload-under-review-docs-to-opnfv-artifacts
- report-docs-build-result-to-gerrit
@@ -111,8 +110,7 @@
pattern: 'docs/**'
builders:
- - clone-opnfv-repos
- - build-html-and-pdf-docs-output
+ - build-opnfv-composite-docs
# - upload-generated-docs-to-opnfv-artifacts
- report-docs-build-result-to-gerrit
- remove-old-docs-from-opnfv-artifacts
@@ -134,7 +132,7 @@
- string:
name: GERRIT_BRANCH
default: '{branch}'
- description: 'Specify the branch in this way in order to be able to use clone-opnfv-repos builder.'
+ description: 'Specify the branch in this way in order to be able to use build-opnfv-composite-docs builder.'
scm:
- git-scm:
@@ -146,62 +144,13 @@
- timed: '0 H/6 * * *'
builders:
- - clone-opnfv-repos
- - build-html-and-pdf-docs-output
+ - build-opnfv-composite-docs
# - upload-generated-docs-to-opnfv-artifacts
- builder:
- name: clone-opnfv-repos
-
- # TODO(r-mibu): fix job name which is not relevant anymore
- # AND move this script into opnfvdocs repo
-
+ name: build-opnfv-composite-docs
builders:
- shell: |
- #!/bin/bash
- set -o errexit
- set -o nounset
- set -o pipefail
-
- tmp=$WORKSPACE/composite_tmp
- [[ -d $tmp ]] && rm -rf $tmp
- mkdir -p $tmp
- mkdir -p $WORKSPACE/docs/projects
-
- pushd $tmp
-
- # clone releng repo to get repo list
- echo "Cloning releng repo"
- git clone $GIT_CLONE_BASE/releng --branch master --depth 1 --quiet
- repos=$(grep -v '^#' releng/jjb/opnfvdocs/project.cfg | sort)
-
- echo
- echo "Cloning repos of participating OPNFV Projects and copying docs"
- echo
- echo "--------------------------------------------------------"
- for repo in $repos; do
- echo " $repo ($GERRIT_BRANCH)"
- git clone $GIT_CLONE_BASE/$repo --branch $GERRIT_BRANCH --depth 1 --quiet
- cp -r $repo/docs $WORKSPACE/docs/projects/$repo
- done
- echo "--------------------------------------------------------"
- echo
-
- echo "Creating document links"
- for guide in configguide userguide
- do
- link_list=$WORKSPACE/docs/$guide/projects-$guide.rst
- for repo in $repos
- do
- file=projects/$repo/$guide/$guide.rst
- [[ -e $WORKSPACE/docs/$file ]] || continue
- echo "" >> $link_list
- echo "$repo:" >> $link_list
- echo ".. include:: ../$file" >> $link_list
- done
- done
-
- popd
- rm -rf $tmp
-
- echo "Done"
+ #!/bin/bash -e
+ export PATH=$PATH:/usr/local/bin/
+ GERRIT_COMMENT=gerrit_comment.txt ./build-composite.sh