multisite: Create kingbird daily deploy and multisite verify job 35/16835/2
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>
Wed, 13 Jul 2016 12:35:22 +0000 (14:35 +0200)
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>
Thu, 14 Jul 2016 07:10:45 +0000 (07:10 +0000)
Change-Id: Ifdc9d00a882990c893d27599e2bae4f387e9bdf0
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
jjb/multisite/multisite.yml [new file with mode: 0644]
jjb/opnfv/slave-params.yml

diff --git a/jjb/multisite/multisite.yml b/jjb/multisite/multisite.yml
new file mode 100644 (file)
index 0000000..f92a4c1
--- /dev/null
@@ -0,0 +1,122 @@
+###################################################
+# All the jobs except verify have been removed!
+# They will only be enabled on request by projects!
+###################################################
+- project:
+    name: multisite
+
+    project: '{name}'
+
+    jobs:
+        - 'multisite-verify-{stream}'
+        - 'multisite-kingbird-daily-{stream}'
+
+    stream:
+        - master:
+            branch: '{stream}'
+            gs-pathname: ''
+            disabled: false
+
+- job-template:
+    name: 'multisite-verify-{stream}'
+
+    disabled: '{obj:disabled}'
+
+    parameters:
+        - project-parameter:
+            project: '{project}'
+        - gerrit-parameter:
+            branch: '{branch}'
+        - 'opnfv-build-ubuntu-defaults'
+
+    scm:
+        - gerrit-trigger-scm:
+            credentials-id: '{ssh-credentials}'
+            refspec: '$GERRIT_REFSPEC'
+            choosing-strategy: 'gerrit'
+
+    triggers:
+        - gerrit:
+            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: '{project}'
+                branches:
+                  - branch-compare-type: 'ANT'
+                    branch-pattern: '**/{branch}'
+                forbidden-file-paths:
+                  - compare-type: ANT
+                    pattern: 'docs/**|.gitignore'
+
+    builders:
+        - shell: |
+            #!/bin/bash
+
+            echo "Hello World"
+
+- job-template:
+    name: 'multisite-kingbird-daily-{stream}'
+
+    project-type: freestyle
+
+    disabled: '{obj:disabled}'
+
+    concurrent: true
+
+    properties:
+        - throttle:
+            enabled: true
+            max-total: 3
+            max-per-node: 2
+            option: 'project'
+
+    parameters:
+        - project-parameter:
+            project: '{project}'
+        - gerrit-parameter:
+            branch: '{branch}'
+        - string:
+            name: KINGBIRD_LOG_FILE
+            default: $WORKSPACE/kingbird.log
+        - 'intel-virtual6-defaults'
+
+    scm:
+        - gerrit-trigger-scm:
+            credentials-id: '{ssh-credentials}'
+            refspec: ''
+            choosing-strategy: 'default'
+
+    triggers:
+         - timed: '@midnight'
+
+    builders:
+        - 'multisite-kingbird-deploy'
+        - 'multisite-kingbird-log-upload'
+########################
+# builder macros
+########################
+- builder:
+    name: 'multisite-kingbird-deploy'
+    builders:
+        - shell: |
+            #!/bin/bash
+
+            $WORKSPACE/tools/kingbird/deploy.sh
+- builder:
+    name: 'multisite-kingbird-log-upload'
+    builders:
+        - shell: |
+            #!/bin/bash
+
+            echo "Here is where we upload kingbird logs to artifact repo"
+            echo "We just check the existence of log file"
+            ls -al $KINGBIRD_LOG_FILE
index b5464a7..7b99830 100644 (file)
             name: LAB_CONFIG_URL
             default: ssh://git@git.enea.com/pharos/lab-config
             description: 'Base URI to the configuration directory'
+- parameter:
+    name: 'intel-virtual6-defaults'
+    parameters:
+        - node:
+            name: SLAVE_NAME
+            description: 'Slave name on Jenkins'
+            allowed-slaves:
+                - intel-virtual6
+            default-slaves:
+                - intel-virtual6
+        - string:
+            name: GIT_BASE
+            default: https://gerrit.opnfv.org/gerrit/$PROJECT
+            description: 'Git URL to use on this Jenkins Slave'
 #####################################################
 # These slaves are just dummy slaves for sandbox jobs
 #####################################################