summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs
diff options
context:
space:
mode:
authorVictor Laza <vlaza@cloudbasesolutions.com>2015-04-20 13:23:22 +0300
committerVictor Laza <vlaza@cloudbasesolutions.com>2015-04-20 13:48:04 +0300
commitde61c2157175d5795465d010807d5eb15a92f909 (patch)
tree30d281f3989f0e714f1d83ea4d4288db168d378c /jjb/opnfvdocs
parent3a58ada482a61762854c8f0285714f291dc698d8 (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/opnfvdocs')
-rw-r--r--jjb/opnfvdocs/build-docu-verify.sh30
-rw-r--r--jjb/opnfvdocs/build-upload-docu.sh (renamed from jjb/opnfvdocs/build-docu.sh)0
-rw-r--r--jjb/opnfvdocs/opnfvdocs.yml6
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