JIRA: DOCU-2 - Adding a job to build functest documentation from .rst files 64/264/1
authorVictor Laza <vlaza@cloudbasesolutions.com>
Wed, 8 Apr 2015 17:14:54 +0000 (20:14 +0300)
committerVictor Laza <vlaza@cloudbasesolutions.com>
Wed, 8 Apr 2015 17:14:54 +0000 (20:14 +0300)
This job will use shell to build documentation for functest project

Change-Id: I4db9391aac119e3cba2e87d454159b89b6c049d9
Signed-off-by: Victor Laza <vlaza@cloudbasesolutions.com>
jjb/functest/build-docu.sh [new file with mode: 0644]
jjb/functest/functest.yml

diff --git a/jjb/functest/build-docu.sh b/jjb/functest/build-docu.sh
new file mode 100644 (file)
index 0000000..680686e
--- /dev/null
@@ -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
index e526dab..c567c19 100644 (file)
@@ -5,6 +5,7 @@
         - 'functest-daily-master'
         - 'functest-merge'
         - 'functest-verify'
+        - 'functest-build-docs'
 
     # stream:    branch with - in place of / (eg. stable-helium)
     # branch:    branch (eg. stable/helium)
             find .
             echo "merge logic goes here"
 
+- job-template:
+    name: 'functest-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: 'functest'
+                branches:
+                    - branch-compare-type: 'ANT'
+                      branch-pattern: '**/master'
+
+    builders:
+        - shell: |
+            !include-raw build-docu.sh