Add version bump job
[releng/builder.git] / jjb / autorelease / autorelease-templates.yaml
1 ---
2 # Autorelease build jobs
3 - job-template:
4     name: 'autorelease-release-{stream}'
5
6     project-type: freestyle
7     node: centos7-autorelease-4c-16g
8     jdk: '{jdk}'
9     cron: 'H 0 * * *'
10
11     # Default variable values
12     extra-mvn-opts: ''
13
14     properties:
15       - opendaylight-infra-properties:
16           build-days-to-keep: '30'
17
18     parameters:
19       - maven-exec:
20           maven-version: 'mvn33'
21       - opendaylight-infra-parameters:
22           os-cloud: '{os-cloud}'
23           project: '{project}'
24           branch: '{branch}'
25           refspec: 'refs/heads/{branch}'
26           artifacts: '{archive-artifacts}'
27       - distribution-karaf-version:
28           karaf-version: '{karaf-version}'
29       - autorelease-release-tag:
30           release-tag: '{next-release-tag}'
31       - autorelease-release-branch:
32           release-branch: '{branch}'
33       - string:
34           name: EXTRA_MVN_OPTS
35           default: '{extra-mvn-opts}'
36           description: |
37               Additional optional Maven Options to pass to the Maven Goals
38               parameter.
39
40               Examples:
41               -Dskip.karaf.featureTest=true  # To disable karaf SingleFeatureTests
42               --fail-never   # NEVER fail the build, regardless of project result
43               --fail-at-end  # Only fail the build afterwards; allow all non-impacted builds to continue
44
45     scm:
46       - git:
47           credentials-id: 'opendaylight-jenkins-ssh'
48           url: '$GIT_BASE'
49           refspec: '$GERRIT_REFSPEC'
50           branches:
51             - '$GERRIT_BRANCH'
52           choosing-strategy: 'gerrit'
53           skip-tag: true
54           submodule:
55             recursive: true
56             timeout: 60
57
58     wrappers:
59       - opendaylight-infra-wrappers:
60           build-timeout: '900'
61
62     triggers:
63       - timed: '{cron}'
64
65     builders:
66       # force jenkins install of maven version before any shell scripts use it
67       - maven-target:
68           maven-version: 'mvn33'
69           goals: '-version'
70           settings: 'autorelease-settings'
71           settings-type: cfp
72           global-settings: 'odl-global-settings'
73           global-settings-type: cfp
74       - wipe-local-maven-repo
75       - jacoco-nojava-workaround
76       - shell: "./scripts/list-project-dependencies.sh"
77       - autorelease-determine-merge-order
78       - autorelease-cfp:
79           autorelease-settings: 'autorelease-settings'
80           odl-global-settings: 'odl-global-settings'
81       - autorelease-generate-taglist
82       - autorelease-distribute-taglist
83       - distribute-build-url:
84           path: 'integration/distribution/$KARAF_ARTIFACT/src/main/assembly'
85       - autorelease-generate-release-patches
86       # In a perfect world projects should be releasing separately and we consume them
87       # via a project that pulls the release bits from each project from Nexus.
88       # Keep the patches compatible with that ideal, but apply an edit
89       # to enable building in a single maven reactor afterwards.
90       - autorelease-fix-relative-paths
91       - maven-target:
92           maven-version: 'mvn33'
93           pom: 'pom.xml'
94           goals: |
95               clean deploy
96               $EXTRA_MVN_OPTS
97               -Pintegrationtests,docs,repoBuild
98               -Dcheckstyle.skip=true
99               -DaltDeploymentRepository=staging::default::file:hide/from/pom/files/stage
100               {opendaylight-infra-mvn-opts}
101           java-opts:
102             - '-Xmx10g -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
103           settings: 'autorelease-settings'
104           settings-type: cfp
105           global-settings: 'odl-global-settings'
106           global-settings-type: cfp
107       - autorelease-maven-deploy
108       - autorelease-get-integration-test-variables
109       - autorelease-maven-sources:
110           opendaylight-infra-mvn-opts: '{opendaylight-infra-mvn-opts}'
111           maven-version: 'mvn33'
112           settings: 'autorelease-settings'
113           global-settings: 'odl-global-settings'
114       - autorelease-maven-sources-post-process
115       - shell: |
116           mkdir -p archives/
117           cp *.log *.prop $_
118
119     publishers:
120       - opendaylight-infra-notify-status
121       - opendaylight-infra-sysstats
122       - archive:
123           # Need to archive dependencies.log in Jenkins to provide a simple
124           # way for downstream jobs to pull the latest version of this file
125           # in their builds.
126           artifacts: 'dependencies.log'
127       - trigger-parameterized-builds:
128           - project: 'autorelease-generate-release-notes-{stream}'
129             condition: UNSTABLE_OR_BETTER
130             property-file: variables.jenkins-trigger
131             fail-on-missing: true
132           - project: 'integration-distribution-test-{integration-test}'
133             condition: UNSTABLE_OR_BETTER
134             property-file: variables.jenkins-trigger
135             fail-on-missing: true
136           - project: 'integration-distribution-test-{integration-test}'
137             condition: FAILED
138             trigger-with-no-params: true
139           - project: 'integration-sanity-test-{integration-test}'
140             condition: UNSTABLE_OR_BETTER
141             property-file: variables.jenkins-trigger
142             fail-on-missing: true
143           - project: 'integration-sanity-test-{integration-test}'
144             condition: FAILED
145             trigger-with-no-params: true
146           - project: 'packaging-build-rpm-master'
147             condition: UNSTABLE_OR_BETTER
148             predefined-parameters: DOWNLOAD_URL=$BUNDLE_URL
149             property-file: variables.jenkins-trigger
150             fail-on-missing: true
151       - opendaylight-infra-shiplogs:
152           maven-version: 'mvn33'
153
154 - job-template:
155     name: autorelease-version-bump-{stream}
156     project-type: freestyle
157     node: centos7-autorelease-4c-16g
158
159     properties:
160       - opendaylight-infra-properties:
161           build-days-to-keep: 7
162
163     parameters:
164       - lf-infra-parameters:
165           project: releng/autorelease
166           branch: '{branch}'
167           refspec: 'refs/heads/{branch}'
168       - string:
169           name: RELEASE_TAG
170           default: '{next-release-tag}'
171           description: |
172               Release that is being version bumped.
173               Eg. Lithium, Beryllium, Boron, Carbon, Carbon-SR1, Carbon-SR2...
174       - bool:
175           name: DRY_RUN
176           default: true
177           description: |
178               If DRY_RUN is enabled modifications are not published to Gerrit.
179       - maven-exec:
180           maven-version: mvn33
181
182     scm:
183       - lf-infra-gerrit-scm:
184           branch: '{branch}'
185           refspec: 'refs/heads/{branch}'
186           jenkins-ssh-credential: opendaylight-jenkins-ssh
187           submodule-recursive: true
188           choosing-strategy: default
189
190     wrappers:
191       - lf-infra-wrappers:
192           build-timeout: 240
193           jenkins-ssh-credential: opendaylight-jenkins-ssh
194
195     builders:
196       # force jenkins install of maven version before any shell scripts use it
197       - maven-target:
198           maven-version: mvn33
199           goals: '-version'
200           settings: autorelease-settings
201           settings-type: cfp
202           global-settings: odl-global-settings
203           global-settings-type: cfp
204       - autorelease-cfp
205       - shell: !include-raw-escape:
206           - ../global-jjb/shell/lftools-install.sh
207           - version-bump.sh
208
209     publishers:
210       - lf-infra-publish
211
212 - job-template:
213     name: 'autorelease-generate-release-notes-{stream}'
214
215     project-type: freestyle
216     node: centos7-java-builder-2c-8g
217
218     properties:
219       - opendaylight-infra-properties:
220           build-days-to-keep: '{build-days-to-keep}'
221
222     parameters:
223       - opendaylight-infra-parameters:
224           os-cloud: '{os-cloud}'
225           project: '{project}'
226           branch: '{branch}'
227           refspec: 'refs/heads/{branch}'
228           artifacts: '{archive-artifacts}'
229
230     scm:
231       - git:
232           credentials-id: 'opendaylight-jenkins-ssh'
233           url: '$GIT_BASE'
234           refspec: '$GERRIT_REFSPEC'
235           branches:
236             - '$GERRIT_BRANCH'
237           choosing-strategy: 'gerrit'
238           skip-tag: true
239           submodule:
240             recursive: true
241
242     wrappers:
243       - opendaylight-infra-wrappers:
244           build-timeout: '30'
245
246     triggers:
247       - timed: '0 0 * * 0'
248
249     builders:
250       # force jenkins install of maven version before any shell scripts use it
251       - maven-target:
252           maven-version: 'mvn33'
253           goals: '-version'
254           settings: 'autorelease-settings'
255           settings-type: cfp
256           global-settings: 'odl-global-settings'
257           global-settings-type: cfp
258       - maven-target:
259           maven-version: 'mvn33'
260           pom: '$WORKSPACE/scripts/release_notes_management/pom.xml'
261           goals: |
262               clean package
263               -Dcheckstyle.skip=true
264               -DaltDeploymentRepository=staging::default::file:hide/from/pom/files/stage
265               {opendaylight-infra-mvn-opts}
266           java-opts:
267             - '-Xmx10g -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
268           settings: 'autorelease-settings'
269           settings-type: cfp
270           global-settings: 'odl-global-settings'
271           global-settings-type: cfp
272       - autorelease-generate-release-notes
273
274     publishers:
275       - opendaylight-infra-sysstats
276       - opendaylight-infra-shiplogs:
277           maven-version: 'mvn33'