composite doc: limit project to import 79/6479/1
authorRyota MIBU <r-mibu@cq.jp.nec.com>
Wed, 13 Jan 2016 06:04:08 +0000 (15:04 +0900)
committerRyota MIBU <r-mibu@cq.jp.nec.com>
Wed, 13 Jan 2016 06:11:24 +0000 (15:11 +0900)
Change-Id: Ie358ef46d9bd46e66e4562e05b0fec20b3f1d3c2
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
build-composite.sh

index 2128376..2175f5c 100755 (executable)
@@ -8,6 +8,13 @@ set -o xtrace
 GIT_CLONE_BASE=${GIT_CLONE_BASE:-ssh://gerrit.opnfv.org:29418}
 GERRIT_BRANCH=${GERRIT_BRANCH:-master}
 
+get_repo_names() {
+    # Note: Not all repositories are ready for the composite docs,
+    #       so we have the repo name list here to add project docs
+    #       one by one. This will be replaced by the list in project.cfg .
+    # grep -v '^#' releng/jjb/opnfvdocs/project.cfg | sort
+    echo "sdnvpn"
+}
 
 git_clone() {
     _repo="$1"
@@ -16,10 +23,9 @@ git_clone() {
     git clone -b $GERRIT_BRANCH --depth 1 --quiet $GIT_CLONE_BASE/$_repo
 }
 
-
 git_clone releng
 
-repos=$(grep -v '^#' releng/jjb/opnfvdocs/project.cfg | sort)
+repos=$(get_repo_names)
 
 [[ -e docs/projects ]] && rm -rf docs/projects
 mkdir -p docs/projects