diff options
Diffstat (limited to 'jjb/opnfvdocs')
-rw-r--r-- | jjb/opnfvdocs/build-docu-verify.sh | 30 | ||||
-rw-r--r-- | jjb/opnfvdocs/build-upload-docu.sh (renamed from jjb/opnfvdocs/build-docu.sh) | 0 | ||||
-rw-r--r-- | jjb/opnfvdocs/opnfvdocs.yml | 6 |
3 files changed, 33 insertions, 3 deletions
diff --git a/jjb/opnfvdocs/build-docu-verify.sh b/jjb/opnfvdocs/build-docu-verify.sh new file mode 100644 index 000000000..061e46d22 --- /dev/null +++ b/jjb/opnfvdocs/build-docu-verify.sh @@ -0,0 +1,30 @@ +#!/bin/bash +project="opnfvdocs" +export PATH=$PATH:/usr/local/bin/ + +git_sha1="$(git rev-parse HEAD)" +docu_build_date="$(date)" + +files=() +while read -r -d ''; do + files+=("$REPLY") +done < <(find * -type f -iname '*.rst' -print0) + +for file in "${{files[@]}}"; do + + file_cut="${{file%.*}}" + gs_cp_folder="${{file_cut}}" + + # sed part + sed -i "s/_sha1_/$git_sha1/g" $file + sed -i "s/_date_/$docu_build_date/g" $file + + # rst2html part + echo "rst2html $file" + rst2html $file > $file_cut".html" + + echo "rst2pdf $file" + rst2pdf $file -o $file_cut".pdf" + +done + diff --git a/jjb/opnfvdocs/build-docu.sh b/jjb/opnfvdocs/build-upload-docu.sh index b7437265d..b7437265d 100644 --- a/jjb/opnfvdocs/build-docu.sh +++ b/jjb/opnfvdocs/build-upload-docu.sh diff --git a/jjb/opnfvdocs/opnfvdocs.yml b/jjb/opnfvdocs/opnfvdocs.yml index 532532787..2d3945227 100644 --- a/jjb/opnfvdocs/opnfvdocs.yml +++ b/jjb/opnfvdocs/opnfvdocs.yml @@ -49,7 +49,7 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-upload-docu.sh - job-template: name: 'opnfvdocs-verify' @@ -98,7 +98,7 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-docu-verify.sh - job-template: name: 'opnfvdocs-merge' @@ -146,5 +146,5 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-upload-docu.sh |