summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs
diff options
context:
space:
mode:
authorVictor Laza <vlaza@cloudbasesolutions.com>2015-04-17 18:33:58 +0300
committerVictor Laza <vlaza@cloudbasesolutions.com>2015-04-17 19:26:58 +0300
commit10958dad23b865f0e4eea2f9d757372e820acb88 (patch)
tree1f625ec900579fbb3ef88b5a080eda5e56c8c5e4 /jjb/opnfvdocs
parent0d3361f38409ed0202a356c24c8049f05414a2ef (diff)
Update [3] on build-docu.sh for opnfvdocs project, added sha & date
JIRA: Added sha1 & date injection & eliminating "./" in the path of files Change-Id: I153ff2f4efe7226887283923896202a59bfe5d3d Signed-off-by: Victor Laza <vlaza@cloudbasesolutions.com>
Diffstat (limited to 'jjb/opnfvdocs')
-rw-r--r--jjb/opnfvdocs/build-docu.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/jjb/opnfvdocs/build-docu.sh b/jjb/opnfvdocs/build-docu.sh
index 548dc7ae5..0ccd0ca20 100644
--- a/jjb/opnfvdocs/build-docu.sh
+++ b/jjb/opnfvdocs/build-docu.sh
@@ -2,16 +2,24 @@
project="opnfvdocs"
export PATH=$PATH:/usr/local/bin/
+git_sha1="git rev-parse HEAD"
+git_date="date"
+
files=()
while read -r -d ''; do
files+=("$REPLY")
-done < <(find . -type f -iname '*.rst' -print0)
+done < <(find * -type f -iname '*.rst' -print0)
for file in "${{files[@]}}"; do
file_cut="${{file%.*}}"
- gs_cp_folder="${{file_cut#/}}"
+ gs_cp_folder="${{file_cut}}"
+
+ # sed part
+ sed -i "s/_sha1_/$git_sha1/g" $full_file_clean
+ sed -i "s/_date_/$git_date/g" $full_file_clean
+ # rst2html part
echo "rst2html $file"
rst2html $file | gsutil cp -L gsoutput.txt - \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".html
@@ -21,7 +29,7 @@ for file in "${{files[@]}}"; do
cat gsoutput.txt
echo "rst2pdf $file"
- rst2pdf "$file" -o - | gsutil cp -L gsoutput.txt - \
+ rst2pdf $fle -o - | gsutil cp -L gsoutput.txt - \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".html
gsutil setmeta -h "Content-Type:application/pdf" \
-h "Cache-Control:private, max-age=0, no-transform" \