Changed VTN's jobs for Beryllium to use JDK8.
[releng/builder.git] / jjb / ovsdb / ovsdb.yaml
1 # REMOVE THIS LINE IF YOU WANT TO CUSTOMIZE ANYTHING BELOW
2 # Otherwise this file will be automatically overwritten by the template
3 # autobuilder.
4
5 # ODL Releng build templates
6 - project:
7     name: ovsdb
8     jobs:
9         - 'ovsdb-verify-{stream}'
10         - 'ovsdb-merge-{stream}'
11         - 'ovsdb-daily-{stream}'
12         - 'ovsdb-distribution-{stream}'
13         - 'ovsdb-integration-{stream}'
14         - 'ovsdb-clm-{stream}'
15
16
17     # stream:    release stream (eg. stable-lithium or beryllium)
18     # branch:    git branch (eg. stable/lithium or master)
19     stream:
20         - clustering-lithium:
21             branch: 'topic/lithium/clustering'
22             jdk: openjdk7
23             jdks:
24                 - openjdk7
25         - clustering-master:
26             branch: 'topic/master/clustering'
27             jdk: openjdk7
28             jdks:
29                 - openjdk7
30         - neutron-yang-migration:
31             branch: 'topic/master/neutron-yang-migration'
32             jdk: openjdk7
33             jdks:
34                 - openjdk7
35         - routermanager:
36             branch: 'topic/routermanager'
37             jdk: openjdk7
38             jdks:
39                 - openjdk7
40         - beryllium:
41             branch: 'master'
42             jdk: openjdk7
43             jdks:
44                 - openjdk7
45         - stable-lithium:
46             branch: 'stable/lithium'
47             jdk: openjdk7
48             jdks:
49                 - openjdk7
50         - stable-helium:
51             branch: 'stable/helium'
52             jdk: openjdk7
53             jdks:
54                 - openjdk7
55
56     project: 'ovsdb'
57
58 # For the Job templates below replace instances of:
59 # PROJECT_SHORTNAME with your project name (eg. circuitsw)
60 # PROJECT_PATH with your project name (eg. ofextensions/circuitsw)
61 # MAVEN_GOALS with your maven goals to build
62 # MAVEN_OPTS with your maven options to build
63
64 - job-template:
65     name: 'ovsdb-verify-{stream}'
66
67     # Job template for ODL verify jobs
68     #
69     # The purpose of this job template is to setup a ODL verify job
70     #
71     # Required Variables:
72     #     stream:    release stream (eg. stable-lithium or beryllium)
73     #     branch:    git branch (eg. stable/lithium or master)
74
75     project-type: matrix
76     node: matrix_master
77     concurrent: true
78
79     axes:
80         - axis:
81             type: slave
82             name: nodes
83             values:
84                 - dynamic_verify
85         - axis:
86             type: jdk
87             values: '{obj:jdks}'
88
89     logrotate:
90         daysToKeep: '{build-days-to-keep}'
91         numToKeep: '{build-num-to-keep}'
92         artifactDaysToKeep: '{build-artifact-days-to-keep}'
93         artifactNumToKeep: '{build-artifact-num-to-keep}'
94
95     parameters:
96         - project-parameter:
97             project: '{project}'
98         - gerrit-parameter:
99             branch: '{branch}'
100
101     scm:
102         - gerrit-trigger-scm:
103             credentials-id: '{ssh-credentials}'
104             refspec: '$GERRIT_REFSPEC'
105             choosing-strategy: 'gerrit'
106
107     wrappers:
108         - build-timeout
109         - ssh-agent-credentials:
110             users:
111                 - '{ssh-credentials}'
112
113     triggers:
114         - gerrit-trigger-patch-submitted:
115             name: 'ovsdb'
116             branch: '{branch}'
117
118     builders:
119         - wipe-org-opendaylight-repo
120         - jacoco-nojava-workaround
121         - provide-maven-settings:
122             global-settings-file: '{odl-global-settings}'
123             settings-file: '{ovsdb-settings}'
124         - maven-target:
125             maven-version: '{mvn33}'
126             pom: 'pom.xml'
127             goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -Dstream={stream}'
128             java-opts:
129                 - '-Xmx1024m -XX:MaxPermSize=256m'
130             settings: '{ovsdb-settings}'
131             global-settings: '{odl-global-settings}'
132
133     publishers:
134         - findbugs
135         - email-notification:
136             email-prefix: '[ovsdb]'
137         - jacoco-report
138
139 - job-template:
140     name: 'ovsdb-merge-{stream}'
141
142     # Job template for ODL merge jobs
143     #
144     # The purpose of this job template is to setup a ODL merge job
145     # and deploy artifacts to Nexus.
146     #
147     # Required Variables:
148     #     stream:    release stream (eg. stable-lithium or beryllium)
149     #     branch:    git branch (eg. stable/lithium or master)
150
151     project-type: maven
152     node: dynamic_merge
153     jdk: '{jdk}'
154
155     logrotate:
156         daysToKeep: '{build-days-to-keep}'
157         numToKeep: '{build-num-to-keep}'
158         artifactDaysToKeep: '{build-artifact-days-to-keep}'
159         artifactNumToKeep: '{build-artifact-num-to-keep}'
160
161     parameters:
162         - project-parameter:
163             project: '{project}'
164
165     scm:
166         - gerrit-trigger-scm:
167             credentials-id: '{ssh-credentials}'
168             refspec: ''
169             choosing-strategy: 'default'
170
171     wrappers:
172         - build-timeout
173         - ssh-agent-credentials:
174             users:
175                 - '{ssh-credentials}'
176
177     triggers:
178         - gerrit-trigger-patch-merged:
179             name: 'ovsdb'
180             branch: '{branch}'
181
182     prebuilders:
183         - wipe-org-opendaylight-repo
184         - jacoco-nojava-workaround
185         - provide-maven-settings:
186             global-settings-file: '{odl-global-settings}'
187             settings-file: '{ovsdb-settings}'
188
189     maven:
190         maven-name: '{mvn33}'
191         root-pom: 'pom.xml'
192         goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r  -Dmerge -Dstream={stream}'
193         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
194         settings: '{ovsdb-settings}'
195         global-settings: '{odl-global-settings}'
196         post-step-run-condition: UNSTABLE
197
198     postbuilders:
199         - conditional-step:
200             condition-kind: file-exists
201             condition-filename: deploy-site.xml
202             condition-basedir: workspace
203
204             # The strategy here is intentional to run Maven site:deploy twice
205             # once using regular pom.xml to produce a staged-site which is
206             # then used by deploy-site.xml to push to Nexus. This is a
207             # workaround to Maven Site's default linking code which creates
208             # incorrect URLs for sites due to auto-detection assuming your
209             # project is configured in a certain way which ODL is not.
210             steps:
211             - maven-target:
212                 maven-version: '{mvn33}'
213                 pom: pom.xml
214                 goals: 'site:deploy -Dstream={stream}'
215                 java-opts:
216                     - '-Xmx2g'
217                 settings: '{ovsdb-settings}'
218                 global-settings: '{odl-global-settings}'
219             - maven-target:
220                 maven-version: '{mvn33}'
221                 pom: deploy-site.xml
222                 goals: 'site:deploy -Dstream={stream}'
223                 java-opts:
224                     - '-Xmx2g'
225                 settings: '{ovsdb-settings}'
226                 global-settings: '{odl-global-settings}'
227
228     reporters:
229         - findbugs
230
231     publishers:
232         - email-notification:
233             email-prefix: '[ovsdb]'
234         - maven-deploy:
235             id: ''
236             unique-version: true
237             deploy-unstable: false
238         - jacoco-report
239
240 - job-template:
241     name: 'ovsdb-daily-{stream}'
242
243     # Job template for daily builders
244     #
245     # The purpose of this job template is to setup a daily/nightly
246     # builder and pushes to Sonar analysis.
247     #
248     # Required Variables:
249     #     stream:    release stream (eg. stable-lithium or beryllium)
250     #     branch:    git branch (eg. stable/lithium or master)
251
252     project-type: maven
253     node: dynamic_verify
254     jdk: '{jdk}'
255
256     logrotate:
257         daysToKeep: '{build-days-to-keep}'
258         numToKeep: '{build-num-to-keep}'
259         artifactDaysToKeep: '{build-artifact-days-to-keep}'
260         artifactNumToKeep: '{build-artifact-num-to-keep}'
261
262     parameters:
263         - project-parameter:
264             project: '{project}'
265
266     scm:
267         - git-scm:
268             credentials-id: '{ssh-credentials}'
269             refspec: ''
270             branch: '{branch}'
271
272     wrappers:
273         - build-timeout
274         - ssh-agent-credentials:
275             users:
276                 - '{ssh-credentials}'
277
278     triggers:
279         - timed: 'H H * * *'
280
281     prebuilders:
282         - wipe-org-opendaylight-repo
283         - jacoco-nojava-workaround
284         - provide-maven-settings:
285             global-settings-file: '{odl-global-settings}'
286             settings-file: '{ovsdb-settings}'
287
288     maven:
289         maven-name: '{mvn33}'
290         root-pom: 'pom.xml'
291         goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r '
292         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
293         settings: '{ovsdb-settings}'
294         global-settings: '{odl-global-settings}'
295
296     reporters:
297         - findbugs
298
299     publishers:
300         - email-notification:
301             email-prefix: '[ovsdb]'
302         - jacoco-report
303
304 - job-template:
305     name: 'ovsdb-distribution-{stream}'
306
307     # Required variables:
308     #     stream:    release stream (eg. stable-lithium or beryllium)
309     #     branch:    git branch (eg. stable/lithium or master)
310
311     project-type: maven
312     node: dynamic_merge
313     jdk: '{jdk}'
314
315     logrotate:
316         daysToKeep: '{build-days-to-keep}'
317         numToKeep: '{build-num-to-keep}'
318         artifactDaysToKeep: '{build-artifact-days-to-keep}'
319         artifactNumToKeep: '{build-artifact-num-to-keep}'
320
321     parameters:
322         - project-parameter:
323             project: 'integration/distribution'
324
325     scm:
326         - git-scm:
327             credentials-id: '{ssh-credentials}'
328             refspec: ''
329             branch: '{branch}'
330
331     wrappers:
332         - build-timeout
333         - ssh-agent-credentials:
334             users:
335                 - '{ssh-credentials}'
336
337     triggers:
338         - reverse:
339             jobs: '{project}-merge-{stream}'
340             result: 'success'
341
342     prebuilders:
343         - wipe-org-opendaylight-repo
344         - provide-maven-settings:
345             global-settings-file: '{odl-global-settings}'
346             settings-file: '{ovsdb-settings}'
347
348     maven:
349         maven-name: '{mvn33}'
350         root-pom: 'pom.xml'
351         goals: '-Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r clean install'
352         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'
353         settings: '{integration-settings}'
354         global-settings: '{odl-global-settings}'
355
356     publishers:
357         - email-notification:
358             email-prefix: '[{project}]'
359         - maven-deploy:
360             id: ''
361             unique-version: true
362             deploy-unstable: false
363
364 - job-template:
365     name: 'ovsdb-integration-{stream}'
366     disabled: false
367
368     # Job template for ODL integration verify jobs
369     #
370     # This is similar to a normal verify job, but it runs
371     # when a project that's a dependency of your project
372     # is successfully built.
373     #
374     # Required Variables:
375     #     stream:    release stream (eg. stable-lithium or beryllium)
376     #     branch:    git branch (eg. stable/lithium or master)
377
378     project-type: maven
379     node: dynamic_merge
380     jdk: '{jdk}'
381
382     logrotate:
383         daysToKeep: '{build-days-to-keep}'
384         numToKeep: '{build-num-to-keep}'
385         artifactDaysToKeep: '{build-artifact-days-to-keep}'
386         artifactNumToKeep: '{build-artifact-num-to-keep}'
387
388     parameters:
389         - project-parameter:
390             project: '{project}'
391
392     scm:
393         - git-scm:
394             credentials-id: '{ssh-credentials}'
395             refspec: ''
396             branch: '{branch}'
397
398     wrappers:
399         - build-timeout
400         - ssh-agent-credentials:
401             users:
402                 - '{ssh-credentials}'
403
404     triggers:
405         - reverse:
406             jobs: 'odlparent-merge-{stream},controller-merge-{stream},yangtools-merge-{stream},openflowplugin-merge-{stream},neutron-merge-{stream}'
407             result: 'success'
408
409     prebuilders:
410         - wipe-org-opendaylight-repo
411         - jacoco-nojava-workaround
412         - provide-maven-settings:
413             global-settings-file: '{odl-global-settings}'
414             settings-file: '{ovsdb-settings}'
415
416     maven:
417         maven-name: '{mvn33}'
418         root-pom: 'pom.xml'
419         goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r '
420         maven-opts: '-Xmx1024m -XX:MaxPermSize=256m'
421         settings: '{ovsdb-settings}'
422         global-settings: '{odl-global-settings}'
423
424     reporters:
425         - findbugs
426
427     publishers:
428         - email-notification:
429             email-prefix: '[ovsdb] [odlparent] [controller] [yangtools] [openflowplugin] [neutron]'
430         - jacoco-report
431
432 - job-template:
433     name: 'ovsdb-clm-{stream}'
434
435     project-type: maven
436     node: dynamic_verify
437     jdk: '{jdk}'
438
439     logrotate:
440         daysToKeep: '{build-days-to-keep}'
441         numToKeep: '{build-num-to-keep}'
442         artifactDaysToKeep: '{build-artifact-days-to-keep}'
443         artifactNumToKeep: '{build-artifact-num-to-keep}'
444
445     parameters:
446         - project-parameter:
447             project: '{project}'
448
449     scm:
450         - git-scm:
451             credentials-id: '{ssh-credentials}'
452             refspec: ''
453             branch: '{branch}'
454
455     wrappers:
456         - build-timeout
457         - ssh-agent-credentials:
458             users:
459                 - '{ssh-credentials}'
460
461     triggers:
462         - timed: '@weekly'
463
464     prebuilders:
465         - wipe-org-opendaylight-repo
466         - provide-maven-settings:
467             global-settings-file: '{odl-global-settings}'
468             settings-file: '{ovsdb-settings}'
469
470     maven:
471         maven-name: '{mvn33}'
472         root-pom: 'pom.xml'
473         goals: 'clean install com.sonatype.clm:clm-maven-plugin:index -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r'
474         maven-opts: '-Xmx4096m -XX:MaxPermSize=512m'
475         settings: '{ovsdb-settings}'
476         global-settings: '{odl-global-settings}'
477
478     postbuilders:
479         - check-clm:
480             application-name: ovsdb
481
482     publishers:
483         - email-notification:
484             email-prefix: '[ovsdb]'
485