From 10958dad23b865f0e4eea2f9d757372e820acb88 Mon Sep 17 00:00:00 2001 From: Victor Laza Date: Fri, 17 Apr 2015 18:33:58 +0300 Subject: 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 --- jjb/opnfvdocs/build-docu.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'jjb/opnfvdocs') 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" \ -- cgit 1.2.3-korg