add build scripts and amend jjb for prediction project
[releng.git] / jjb / prediction / docu-verify.sh
1 #!/bin/bash
2 set -e
3 set -o pipefail
4 project="$(git remote -v | head -n1 | awk '{{print $2}}' | sed -e 's,.*:\(.*/\)\?,,' -e 's/\.git$//')"
5 export PATH=$PATH:/usr/local/bin/
6
7 git_sha1="$(git rev-parse HEAD)"
8 docu_build_date="$(date)"
9
10 files=()
11 while read -r -d ''; do
12         files+=("$REPLY")
13 done < <(find * -type f -iname '*.rst' -print0)
14
15 for file in "${{files[@]}}"; do
16
17         file_cut="${{file%.*}}"
18         gs_cp_folder="${{file_cut}}"
19
20         # sed part
21         sed -i "s/_sha1_/$git_sha1/g" $file
22         sed -i "s/_date_/$docu_build_date/g" $file
23
24         # rst2html part
25         echo "rst2html $file"
26         rst2html $file > $file_cut".html"
27
28         echo "rst2pdf $file"
29         rst2pdf $file -o $file_cut".pdf"
30
31 done
32