Add integration job for verifying Python scripts 04/16704/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Tue, 17 Mar 2015 14:53:21 +0000 (10:53 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Tue, 17 Mar 2015 14:53:21 +0000 (10:53 -0400)
Change-Id: If2574b88a69b01823932f95ebaec2afc1691f1fe
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
jjb/integration/integration-python.yaml [new file with mode: 0644]

diff --git a/jjb/integration/integration-python.yaml b/jjb/integration/integration-python.yaml
new file mode 100644 (file)
index 0000000..da08b5a
--- /dev/null
@@ -0,0 +1,84 @@
+- project:
+    name: integration-python
+    jobs:
+        - 'integration-verify-python-{stream}'
+
+    # stream:    branch with - in place of / (eg. stable-helium)
+    # branch:    branch (eg. stable/helium)
+    stream:
+        - master:
+            branch: 'master'
+
+    project: 'integration'
+    jdk: 'openjdk7'
+
+- job-template:
+    name: 'integration-verify-python-{stream}'
+
+    # Job template for ODL verify jobs
+    #
+    # The purpose of this job template is to setup a ODL verify job
+    #
+    # Required Variables:
+    #     stream:    branch with - in place of / (eg. stable-helium)
+    #     branch:    branch (eg. stable/helium)
+
+    project-type: freestyle
+    node: dynamic_verify
+    concurrent: true
+    jdk: '{jdk}'
+
+    logrotate:
+        daysToKeep: '{build-days-to-keep}'
+        numToKeep: '{build-num-to-keep}'
+        artifactDaysToKeep: '{build-artifact-days-to-keep}'
+        artifactNumToKeep: '{build-artifact-num-to-keep}'
+
+    parameters:
+        - project-parameter:
+            project: '{project}'
+        - gerrit-parameter:
+            branch: '{branch}'
+
+    scm:
+        - gerrit-trigger-scm:
+            credentials-id: '{ssh-credentials}'
+            refspec: '$GERRIT_REFSPEC'
+            choosing-strategy: 'gerrit'
+
+    wrappers:
+        - build-timeout
+        - ssh-agent-credentials:
+            user: '{ssh-credentials}'
+
+    triggers:
+        - gerrit:
+            server-name: 'OpenDaylight'
+            trigger-on:
+                - patchset-created-event:
+                    exclude-drafts: 'false'
+                    exclude-trivial-rebase: 'false'
+                    exclude-no-code-change: 'false'
+                - draft-published-event
+                - comment-added-contains-event:
+                    comment-contains-value: 'recheck'
+                - comment-added-contains-event:
+                    comment-contains-value: 'reverify'
+            projects:
+              - project-compare-type: 'ANT'
+                project-pattern: 'integration'
+                branches:
+                  - branch-compare-type: 'ANT'
+                    branch-pattern: '**/{branch}'
+                file-paths:
+                    - compare-type: ANT
+                      pattern: test/**
+
+    builders:
+        - shell: |
+            cd test
+            tox
+
+    publishers:
+        - email-notification:
+            email-prefix: '[integration]'