Enable trigger with no parameters
[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: '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           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: '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: '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       - trigger-parameterized-builds:
122           - project: 'integration-distribution-test-{integration-test}'
123             condition: UNSTABLE_OR_BETTER
124             property-file: variables.jenkins-trigger
125             fail-on-missing: true
126           - project: 'integration-distribution-test-{integration-test}'
127             condition: FAILED
128             trigger-with-no-params: true
129           - project: 'integration-sanity-test-{integration-test}'
130             condition: UNSTABLE_OR_BETTER
131             property-file: variables.jenkins-trigger
132             fail-on-missing: true
133           - project: 'integration-sanity-test-{integration-test}'
134             condition: FAILED
135             trigger-with-no-params: true
136           - project: 'packaging-build-rpm-master'
137             condition: UNSTABLE_OR_BETTER
138             predefined-parameters: DOWNLOAD_URL=$BUNDLE_URL
139             property-file: variables.jenkins-trigger
140             fail-on-missing: true
141       - lf-infra-publish
142
143 - job-template:
144     name: autorelease-version-bump-{stream}
145     project-type: freestyle
146     node: centos7-autorelease-4c-16g
147
148     properties:
149       - opendaylight-infra-properties:
150           build-days-to-keep: 7
151
152     parameters:
153       - lf-infra-parameters:
154           project: releng/autorelease
155           branch: '{branch}'
156           refspec: 'refs/heads/{branch}'
157       - string:
158           name: RELEASE_TAG
159           default: '{next-release-tag}'
160           description: |
161               Release that is being version bumped.
162               Eg. Lithium, Beryllium, Boron, Carbon, Carbon-SR1, Carbon-SR2...
163       - bool:
164           name: DRY_RUN
165           default: true
166           description: |
167               If DRY_RUN is enabled modifications are not published to Gerrit.
168       - maven-exec:
169           maven-version: mvn33
170
171     scm:
172       - lf-infra-gerrit-scm:
173           git-url: '$GIT_URL/$GERRIT_PROJECT'
174           branch: '{branch}'
175           refspec: 'refs/heads/{branch}'
176           jenkins-ssh-credential: opendaylight-jenkins-ssh
177           submodule-recursive: true
178           choosing-strategy: default
179
180     wrappers:
181       - lf-infra-wrappers:
182           build-timeout: 240
183           jenkins-ssh-credential: opendaylight-jenkins-ssh
184
185     builders:
186       # force jenkins install of maven version before any shell scripts use it
187       - maven-target:
188           maven-version: mvn33
189           goals: '-version'
190           settings: autorelease-settings
191           settings-type: cfp
192           global-settings: global-settings
193           global-settings-type: cfp
194       - autorelease-cfp
195       - shell: !include-raw-escape:
196           - ../global-jjb/shell/lftools-install.sh
197           - version-bump.sh
198
199     publishers:
200       - trigger-parameterized-builds:
201           - project: 'autorelease-generate-release-notes-{stream}'
202             condition: UNSTABLE_OR_BETTER
203             trigger-with-no-params: true
204       - lf-infra-publish
205
206 - job-template:
207     name: 'autorelease-generate-release-notes-{stream}'
208
209     project-type: freestyle
210     node: centos7-java-builder-2c-4g
211
212     properties:
213       - lf-infra-properties:
214           build-days-to-keep: 7
215
216     parameters:
217       - lf-infra-parameters:
218           project: '{project}'
219           branch: '{branch}'
220
221     scm:
222       - lf-infra-gerrit-scm:
223           git-url: '$GIT_URL/$GERRIT_PROJECT'
224           branch: '{branch}'
225           refspec: 'refs/heads/{branch}'
226           jenkins-ssh-credential: opendaylight-jenkins-ssh
227           submodule-recursive: true
228           choosing-strategy: default
229
230     wrappers:
231       - lf-infra-wrappers:
232           build-timeout: 10
233           jenkins-ssh-credential: opendaylight-jenkins-ssh
234
235     triggers:
236       - timed: '0 0 * * 0'
237
238     builders:
239       - lf-maven-install:
240           mvn-version: mvn33
241       - maven-target:
242           maven-version: mvn33
243           pom: '$WORKSPACE/scripts/release_notes_management/pom.xml'
244           goals: |
245               clean package
246               {opendaylight-infra-mvn-opts}
247           settings: autorelease-settings
248           settings-type: cfp
249           global-settings: global-settings
250           global-settings-type: cfp
251       - autorelease-generate-release-notes
252
253     publishers:
254       - lf-infra-publish