diff options
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/opnfvdocs/build-docu.sh | 8 | ||||
-rw-r--r-- | jjb/opnfvdocs/opnfvdocs.yml | 42 |
2 files changed, 50 insertions, 0 deletions
diff --git a/jjb/opnfvdocs/build-docu.sh b/jjb/opnfvdocs/build-docu.sh new file mode 100644 index 000000000..1ea9d0eeb --- /dev/null +++ b/jjb/opnfvdocs/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 diff --git a/jjb/opnfvdocs/opnfvdocs.yml b/jjb/opnfvdocs/opnfvdocs.yml index 326c27d53..327747f7f 100644 --- a/jjb/opnfvdocs/opnfvdocs.yml +++ b/jjb/opnfvdocs/opnfvdocs.yml @@ -5,6 +5,7 @@ - 'opnfvdocs-daily-master' - 'opnfvdocs-merge' - 'opnfvdocs-verify' + - 'opnfvdocs-build-docs' # stream: branch with - in place of / (eg. stable-helium) # branch: branch (eg. stable/helium) @@ -180,6 +181,47 @@ +- job-template: + name: 'opnfvdocs-build-docs' + + project-type: freestyle + + logrotate: + daysToKeep: 30 + numToKeep: 40 + artifactDaysToKeep: -1 + artifactNumToKeep: 5 + + parameters: + - project-parameter: + project: '{project}' + - gerrit-parameter: + branch: 'master' + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + choosing-strategy: 'default' + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - gerrit: + trigger-on: + - change-merged-event + - comment-added-contains-event: + comment-contains-value: 'remerge' + projects: + - project-compare-type: 'ANT' + project-pattern: 'opnfvdocs' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/master' + + builders: + - shell: | + !include-raw build-docu.sh |