summaryrefslogtreecommitdiffstats
path: root/jjb/releng/docu-build-new.sh
blob: 8c0cc49bb181c8a8fe7ace339acf3d514100c5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
set -e
set -o pipefail

export PATH=$PATH:/usr/local/bin/

clean() {{
if [[ -d docs/output ]]; then
rm -rf docs/output
echo "cleaning up output directory"
fi
}}

trap clean EXIT TERM INT SIGTERM SIGHUP

directories=()
while read -d $'\n'; do
  directories+=("$REPLY")
done < <(find docs/ -name 'index.rst' -printf '%h\n' | sort -u )

for dir in "${{directories[@]}}"; do
  echo
  echo "#############################"
  echo "Building DOCS in ${{dir##*/}}"
  echo "#############################"
  echo

  if [[ ! -d docs/output/"${{dir##*/}}/" ]]; then
    mkdir -p docs/output/"${{dir##*/}}/"
  fi

  sphinx-build -b html -E -c docs/etc/ ""$dir"/" docs/output/"${{dir##*/}}/"
done

# 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"

for dir in "${{directories[@]}}"; do
  echo
  echo "#############################"
  echo "UPLOADING DOCS in ${{dir##*/}}"
  echo "#############################"
  echo

  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"

    #Clean up review when merging
    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