summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2015-08-26 17:06:50 -0400
committerAric Gardner <agardner@linuxfoundation.org>2015-08-26 17:06:50 -0400
commitd94bb06597298d248324740b8bdddc81e5ecead5 (patch)
treef0a822d880f0fee388f072707fdfedc66d3cebcd
parentc143d47175ac37eb181c8ad3274561e7895cb492 (diff)
This should handle multiple directories
Change-Id: If72c3de0273844daf595b56876d0c60f6d2d196f Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
-rwxr-xr-xjjb/releng/docu-build-new.sh67
1 files changed, 37 insertions, 30 deletions
diff --git a/jjb/releng/docu-build-new.sh b/jjb/releng/docu-build-new.sh
index 233aba54f..01827cb25 100755
--- a/jjb/releng/docu-build-new.sh
+++ b/jjb/releng/docu-build-new.sh
@@ -31,42 +31,49 @@ fi
sphinx-build -b html -E -c docs/etc/ ""$dir"/" docs/output/"${{dir##*/}}/"
-echo
-echo "Upload"
-echo "------"
-echo
-
# NOTE: make sure source parameters for GS paths are not empty.
[[ $GERRIT_CHANGE_NUMBER =~ .+ ]]
[[ $GERRIT_PROJECT =~ .+ ]]
[[ $GERRIT_BRANCH =~ .+ ]]
-gs_path_review="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
-if [[ $GERRIT_BRANCH = "master" ]] ; then
- gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT"
-else
- gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT/${{GERRIT_BRANCH##*/}}"
-fi
+directories=()
+while read -d $'\n'; do
+ directories+=("$REPLY")
+ done < <(find docs/ -name 'index.rst' -printf '%h\n' | sort -u )
-if [[ $JOB_NAME =~ "verify" ]] ; then
- gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_review/"
- echo
- # post link to gerrit as comment
- gerrit_comment=$(echo '"Document is available at 'http://$gs_path_review/"${{dir##*/}}"/index.html' for review"')
- echo "$gerrit_comment"
- ssh -p 29418 gerrit.opnfv.org gerrit review -p $GERRIT_PROJECT -m \
- $gerrit_comment $GERRIT_PATCHSET_REVISION
-else
- gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/design_docs/"
-
- echo "Latest document is available at http://$gs_path_branch/design_docs/index.html"
-
- if gsutil ls "gs://$gs_path_review" > /dev/null 2>&1 ; then
- echo
- echo "Deleting Out-of-dated Documents..."
- gsutil rm -r "gs://$gs_path_review"
- fi
-fi
+ for dir in "${{directories[@]}}"; do
+ echo
+ echo "#############################"
+ echo "UPLOADING DOCS in ${{dir##*/}}"
+ echo "#############################"
+ echo
+
+ gs_path_review="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
+ if [[ $GERRIT_BRANCH = "master" ]] ; then
+ gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT"
+ else
+ gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT/${{GERRIT_BRANCH##*/}}"
+ fi
+
+ if [[ $JOB_NAME =~ "verify" ]] ; then
+ gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_review/"
+ # post link to gerrit as comment
+ gerrit_comment="$(echo '"Document is available at 'http://$gs_path_review/"${{dir##*/}}"/index.html' for review"')"
+ echo "$gerrit_comment"
+ ssh -p 29418 gerrit.opnfv.org gerrit review -p $GERRIT_PROJECT -m \
+ "$gerrit_comment" $GERRIT_PATCHSET_REVISION
+ else
+ gsutil cp -r docs/output/"${{dir##*/}}/" "gs://$gs_path_branch/"
+
+ echo "Latest document is available at http://$gs_path_branch/index.html"
+
+ if gsutil ls "gs://$gs_path_review" > /dev/null 2>&1 ; then
+ echo
+ echo "Deleting Out-of-dated Documents..."
+ gsutil rm -r "gs://$gs_path_review"
+ fi
+ fi
+ done
done