c416ea8664659ae0016633c5cf2678e376c3c1fd
[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         - timed: 'H H * * 0'
45         - gerrit-trigger-patch-merged:
46             name: 'PROJECT_PATH'
47             branch: '{branch}'
48
49     prebuilders:
50         - wipe-org-opendaylight-repo
51         - jacoco-nojava-workaround
52         - provide-maven-settings:
53             global-settings-file: '{odl-global-settings}'
54             settings-file: '{JENKINS_SETTINGS}'
55
56     maven:
57         maven-name: '{mvn33}'
58         root-pom: 'POM'
59         goals: 'MAVEN_GOALS -Djenkins -Dmerge -Dstream={stream}'
60         maven-opts: 'MAVEN_OPTS'
61         settings: '{JENKINS_SETTINGS}'
62         global-settings: '{odl-global-settings}'
63         post-step-run-condition: UNSTABLE
64
65     postbuilders:
66         - conditional-step:
67             condition-kind: file-exists
68             condition-filename: deploy-site.xml
69             condition-basedir: workspace
70
71             # The strategy here is intentional to run Maven site:deploy twice
72             # once using regular pom.xml to produce a staged-site which is
73             # then used by deploy-site.xml to push to Nexus. This is a
74             # workaround to Maven Site's default linking code which creates
75             # incorrect URLs for sites due to auto-detection assuming your
76             # project is configured in a certain way which ODL is not.
77             steps:
78             - maven-target:
79                 maven-version: '{mvn33}'
80                 pom: pom.xml
81                 goals: 'site:deploy -Dstream={stream}'
82                 java-opts:
83                     - '-Xmx2g'
84                 settings: '{JENKINS_SETTINGS}'
85                 global-settings: '{odl-global-settings}'
86             - maven-target:
87                 maven-version: '{mvn33}'
88                 pom: deploy-site.xml
89                 goals: 'site:deploy -Dstream={stream}'
90                 java-opts:
91                     - '-Xmx2g'
92                 settings: '{JENKINS_SETTINGS}'
93                 global-settings: '{odl-global-settings}'
94
95     reporters:
96         - findbugs
97
98     publishers:
99         ARCHIVE_ARTIFACTS
100         - email-notification:
101             email-prefix: '[PROJECT_SHORTNAME]'
102         - maven-deploy:
103             id: ''
104             unique-version: true
105             deploy-unstable: false
106         - jacoco-report