diff options
author | Victor Laza <vlaza@cloudbasesolutions.com> | 2015-04-20 13:23:22 +0300 |
---|---|---|
committer | Victor Laza <vlaza@cloudbasesolutions.com> | 2015-04-20 13:48:04 +0300 |
commit | de61c2157175d5795465d010807d5eb15a92f909 (patch) | |
tree | 30d281f3989f0e714f1d83ea4d4288db168d378c /jjb/octopus | |
parent | 3a58ada482a61762854c8f0285714f291dc698d8 (diff) |
Separate merge and verify script contents to avoid gs upload
JIRA: DOCS-22 - Separate merge and verify script contents to avoid gs upload
Needs to be done under releng jjb for all R1 projects
Change-Id: If9b4815e733a6b773f49f0dc3cd6da84618979fd
Signed-off-by: Victor Laza <vlaza@cloudbasesolutions.com>
Diffstat (limited to 'jjb/octopus')
-rw-r--r-- | jjb/octopus/build-docu-verify.sh | 30 | ||||
-rw-r--r-- | jjb/octopus/build-upload-docu.sh (renamed from jjb/octopus/build-docu.sh) | 0 | ||||
-rw-r--r-- | jjb/octopus/octopus.yml | 6 |
3 files changed, 33 insertions, 3 deletions
diff --git a/jjb/octopus/build-docu-verify.sh b/jjb/octopus/build-docu-verify.sh new file mode 100644 index 000000000..01338efe4 --- /dev/null +++ b/jjb/octopus/build-docu-verify.sh @@ -0,0 +1,30 @@ +#!/bin/bash +project="octopus" +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/octopus/build-docu.sh b/jjb/octopus/build-upload-docu.sh index 81f875dcf..81f875dcf 100644 --- a/jjb/octopus/build-docu.sh +++ b/jjb/octopus/build-upload-docu.sh diff --git a/jjb/octopus/octopus.yml b/jjb/octopus/octopus.yml index 923696eb6..c72292c8f 100644 --- a/jjb/octopus/octopus.yml +++ b/jjb/octopus/octopus.yml @@ -74,7 +74,7 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-upload-docu.sh postbuilders: - test-macro @@ -128,7 +128,7 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-docu-verify.sh - job-template: name: 'octopus-merge' @@ -176,5 +176,5 @@ builders: - shell: - !include-raw build-docu.sh + !include-raw build-upload-docu.sh |