From 41e14314400339743eef2c2ed4596c62c824306e Mon Sep 17 00:00:00 2001 From: Victor Laza Date: Wed, 8 Apr 2015 20:14:54 +0300 Subject: JIRA: DOCU-2 - Adding a job to build functest documentation from .rst files This job will use shell to build documentation for functest project Change-Id: I4db9391aac119e3cba2e87d454159b89b6c049d9 Signed-off-by: Victor Laza --- jjb/functest/build-docu.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 jjb/functest/build-docu.sh (limited to 'jjb/functest/build-docu.sh') diff --git a/jjb/functest/build-docu.sh b/jjb/functest/build-docu.sh new file mode 100644 index 000000000..680686eb6 --- /dev/null +++ b/jjb/functest/build-docu.sh @@ -0,0 +1,8 @@ +#!/bin/bash +for file in $(find . -type f -iname '*.rst'); do + file_cut="${file%.*}" + html_file=$file_cut".html" + pdf_file=$file_cut".pdf" + rst2html $file > $html_file + rst2pdf $file -o $pdf_file +done -- cgit 1.2.3-korg