summaryrefslogtreecommitdiffstats
path: root/jjb/copper/docu-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/copper/docu-build.sh')
-rw-r--r--jjb/copper/docu-build.sh54
1 files changed, 0 insertions, 54 deletions
diff --git a/jjb/copper/docu-build.sh b/jjb/copper/docu-build.sh
deleted file mode 100644
index c4edb949e..000000000
--- a/jjb/copper/docu-build.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-set -e
-set -o pipefail
-
-export PATH=$PATH:/usr/local/bin/
-
-echo
-echo "Build"
-echo "-----"
-echo
-
-#make
-sphinx-build -b html -E -c etc/ docs/design/ build/
-
-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
-
-if [[ $JOB_NAME =~ "verify" ]] ; then
- gsutil cp -r build/* "gs://$gs_path_review/"
- echo
- echo "Document is available at http://$gs_path_review/index.html"
- # post link to gerrit as comment
- gerrit_comment=$(echo '"Document is available at 'http://$gs_path_review/index.html' for review"')
- ssh -p 29418 gerrit.opnfv.org gerrit review -p $GERRIT_PROJECT -m \
- $gerrit_comment $GERRIT_PATCHSET_REVISION
-else
- gsutil cp -r build/* "gs://$gs_path_branch/docs/design/"
- #gsutil cp -r build/docs/design "gs://$gs_path_branch/"
- #gsutil cp -r build/requirements/html "gs://$gs_path_branch/"
- #gsutil cp -r build/requirements/latex/*.pdf "gs://$gs_path_branch/"
- #echo
-
- echo "Latest document is available at http://$gs_path_branch/docs/design/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