Merge "Ovsdb 3 node Clustering job"
[releng/builder.git] / jjb-templates / merge.yaml
1 - job-template:
2     name: 'PROJECT_SHORTNAME-merge-{stream}'
3
4     # Job template for ODL merge jobs
5     #
6     # The purpose of this job template is to setup a ODL merge job
7     # and deploy artifacts to Nexus.
8     #
9     # Required Variables:
10     #     stream:    release stream (eg. stable-lithium or beryllium)
11     #     branch:    git branch (eg. stable/lithium or master)
12
13     project-type: maven
14     node: dynamic_merge
15     jdk: '{jdk}'
16
17     logrotate:
18         daysToKeep: '{build-days-to-keep}'
19         numToKeep: '{build-num-to-keep}'
20         artifactDaysToKeep: '{build-artifact-days-to-keep}'
21         artifactNumToKeep: '{build-artifact-num-to-keep}'
22
23     parameters:
24         - project-parameter:
25             project: '{project}'
26         - gerrit-parameter:
27             branch: '{branch}'
28         - gerrit-refspec-parameter:
29             refspec: 'refs/heads/{branch}'
30
31     scm:
32         - gerrit-trigger-scm:
33             credentials-id: '{ssh-credentials}'
34             refspec: ''
35             choosing-strategy: 'default'
36
37     wrappers:
38         - build-timeout
39         - ssh-agent-credentials:
40             users:
41                 - '{ssh-credentials}'
42
43     triggers:
44         - gerrit-trigger-patch-merged:
45             name: 'PROJECT_PATH'
46             branch: '{branch}'
47
48     prebuilders:
49         - wipe-org-opendaylight-repo
50         - jacoco-nojava-workaround
51         - provide-maven-settings:
52             global-settings-file: '{odl-global-settings}'
53             settings-file: '{JENKINS_SETTINGS}'
54
55     maven:
56         maven-name: '{mvn33}'
57         root-pom: 'POM'
58         goals: 'MAVEN_GOALS -Djenkins -Dmerge -Dstream={stream}'
59         maven-opts: 'MAVEN_OPTS'
60         settings: '{JENKINS_SETTINGS}'
61         global-settings: '{odl-global-settings}'
62         post-step-run-condition: UNSTABLE
63
64     postbuilders:
65         - conditional-step:
66             condition-kind: file-exists
67             condition-filename: deploy-site.xml
68             condition-basedir: workspace
69
70             # The strategy here is intentional to run Maven site:deploy twice
71             # once using regular pom.xml to produce a staged-site which is
72             # then used by deploy-site.xml to push to Nexus. This is a
73             # workaround to Maven Site's default linking code which creates
74             # incorrect URLs for sites due to auto-detection assuming your
75             # project is configured in a certain way which ODL is not.
76             steps:
77             - maven-target:
78                 maven-version: '{mvn33}'
79                 pom: pom.xml
80                 goals: 'site:deploy -Dstream={stream}'
81                 java-opts:
82                     - '-Xmx2g'
83                 settings: '{JENKINS_SETTINGS}'
84                 global-settings: '{odl-global-settings}'
85             - maven-target:
86                 maven-version: '{mvn33}'
87                 pom: deploy-site.xml
88                 goals: 'site:deploy -Dstream={stream}'
89                 java-opts:
90                     - '-Xmx2g'
91                 settings: '{JENKINS_SETTINGS}'
92                 global-settings: '{odl-global-settings}'
93
94     reporters:
95         - findbugs
96
97     publishers:
98         ARCHIVE_ARTIFACTS
99         - email-notification:
100             email-prefix: '[PROJECT_SHORTNAME]'
101         - maven-deploy:
102             id: ''
103             unique-version: true
104             deploy-unstable: false
105         - jacoco-report