Merge "Switch all projects to use new maven-merge job"
[releng/builder.git] / jjb / releng-macros.yaml
1 # OLD Releng macros
2 ---
3 - property:
4     name: opendaylight-infra-properties
5     properties:
6       - build-discarder:
7           days-to-keep: '{build-days-to-keep}'
8           num-to-keep: 40
9           # Need to keep artifacts for at least 1 day as some projects need to
10           # be able to validate their artifacts and only allowing limited
11           # number of artifacts could make fast moving jobs lost their
12           # artifacts before the developers can test it.
13           artifact-days-to-keep: 1
14
15 - parameter:
16     name: opendaylight-infra-parameters
17     parameters:
18       - string:
19           name: PROJECT
20           default: '{project}'
21           description: 'Parameter to identify an ODL Gerrit project'
22       - string:
23           name: ARCHIVE_ARTIFACTS
24           # Before adding more here, beware of https://jira.linuxfoundation.org/browse/RELENG-280
25           default: >
26               {artifacts}
27               **/target/surefire-reports/*-output.txt
28               **/target/failsafe-reports/failsafe-summary.xml
29               **/hs_err_*.log
30               **/target/feature/feature.xml
31           # TODO: **/*.hprof is too large, compress with xz first
32           description: 'Space separated glob patterns for artifacts to archive into logs.opendaylight.org'
33       - string:
34           name: GERRIT_PROJECT
35           default: '{project}'
36           description: "GERRIT_PROJECT parameter if not given by trigger"
37       - string:
38           name: GERRIT_BRANCH
39           default: '{branch}'
40           description: "JJB configured GERRIT_BRANCH parameter"
41       - string:
42           name: GERRIT_REFSPEC
43           default: '{refspec}'
44           description: |
45               Gerrit reference to checkout (ex: refs/heads/master,
46               refs/changes/48/61548/1 where 61548 is Gerrit change ID, 1 is
47               patch number and 48 is last two digits of change ID)
48       - string:
49           name: STACK_NAME
50           default: '$SILO-$JOB_NAME-$BUILD_NUMBER'
51           description: "Used by Heat to generate a unique stack & vm name"
52       - string:
53           name: OS_CLOUD
54           default: '{os-cloud}'
55           description: |
56               The name of a cloud configuration in clouds.yaml. OS_CLOUD is a
57               variable name that is significant to openstack client as a
58               environment variable. Please refer to the documentation for
59               further details.
60               https://docs.openstack.org/developer/python-openstackclient/
61
62 - parameter:
63     name: build-tag
64     parameters:
65       - string:
66           name: BUILD_TAG
67           default: ''
68           description: 'Tag in Git to checkout'
69
70 - parameter:
71     name: controller-version-parameter
72     parameters:
73       - string:
74           name: ODL_VERSION
75           default: '{odl_version}'
76           description: 'Controller version (for use with openstacks networking_odl project)'
77
78 - parameter:
79     name: patches-to-build-parameter
80     parameters:
81       - string:
82           name: PATCHES_TO_BUILD
83           default: ''
84           description: |
85             Patches to add to distro in CSV project:changeset format (genius:32/53632/9,netvirt:59/50259/47)
86
87 - parameter:
88     name: run-test-parameter
89     parameters:
90       - string:
91           name: RUNTEST
92           default: '{run-test}'
93           description: 'Set true to run test after build'
94
95 - parameter:
96     name: distribution-branch-to-build-parameter
97     parameters:
98       - string:
99           name: DISTRIBUTION_BRANCH_TO_BUILD
100           default: 'master'
101           description: 'distribution repo branch to build with'
102
103 - parameter:
104     name: p2zip-parameter
105     parameters:
106       - string:
107           name: P2ZIP_URL
108           default: ''
109           description: 'Nexus staging profile id'
110
111 - parameter:
112     name: stage-id-parameter
113     parameters:
114       - string:
115           name: STAGING_PROFILE_ID
116           default: '{stage-id}'
117           description: 'Nexus staging profile id'
118
119 - parameter:
120     name: maven-exec
121     parameters:
122       - string:
123           name: MVN
124           default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{maven-version}/bin/mvn'
125           description: 'Maven selector to be used by shell scripts'
126
127 - scm:
128     name: git-scm
129     scm:
130       - git:
131           credentials-id: 'opendaylight-jenkins-ssh'
132           url: '$GIT_BASE'
133           refspec: ''
134           branches:
135             - 'origin/{branch}'
136           skip-tag: true
137           wipe-workspace: true
138
139 - scm:
140     name: git-scm-with-submodules
141     scm:
142       - git:
143           credentials-id: 'opendaylight-jenkins-ssh'
144           url: '$GIT_BASE'
145           refspec: ''
146           branches:
147             - 'refs/heads/{branch}'
148           skip-tag: true
149           wipe-workspace: true
150           submodule:
151             recursive: true
152
153 - scm:
154     name: gerrit-trigger-scm
155     scm:
156       - git:
157           credentials-id: 'opendaylight-jenkins-ssh'
158           url: '$GIT_BASE'
159           refspec: '{refspec}'
160           branches:
161             - 'origin/$GERRIT_BRANCH'
162           skip-tag: true
163           choosing-strategy: '{choosing-strategy}'
164
165 - wrapper:
166     name: build-timeout
167     wrappers:
168       - timeout:
169           type: absolute
170           timeout: 360
171           fail: true
172
173 # This is a single macro to use for all jobs who vote on every (relevant) patch set.
174 # Only 'recheck' trigger word is supported, it always triggers the full set of relevant jobs,
175 # in order to prevent Jenkins from starting only a subset and still voting Verified+1.
176 # Arguments:
177 #     gerrit-server-name: name of gerrit server to listen to
178 #     project: pattern to match triggering projects
179 #     branch: triggering branch name
180 #     files: pattern to match triggering filepaths
181 - trigger:
182     name: gerrit-trigger-patch-submitted
183     triggers:
184       - gerrit:
185           server-name: '{gerrit-server-name}'
186           trigger-on:
187             - patchset-created-event:
188                 exclude-drafts: true
189                 exclude-trivial-rebase: false
190                 exclude-no-code-change: false
191             - draft-published-event
192             - comment-added-contains-event:
193                 comment-contains-value: recheck
194           projects:
195             - project-compare-type: ANT
196               project-pattern: '{project}'
197               branches:
198                 - branch-compare-type: ANT
199                   branch-pattern: '**/{branch}'
200               file-paths:
201                 - compare-type: ANT
202                   pattern: '{files}'
203
204 # TODO: Unify argument names across gerrit-trigger-* macros.
205 - trigger:
206     name: gerrit-trigger-patch-merged
207     triggers:
208       - gerrit:
209           server-name: '{gerrit-server-name}'
210           trigger-on:
211             - change-merged-event
212             - comment-added-contains-event:
213                 comment-contains-value: 'remerge'
214           projects:
215             - project-compare-type: 'ANT'
216               project-pattern: '{name}'
217               branches:
218                 - branch-compare-type: 'ANT'
219                   branch-pattern: '**/{branch}'
220           skip-vote:
221             successful: true
222             failed: true
223             unstable: true
224             notbuilt: true
225           # Force Jenkins always vote the values it should already have voted
226           # during the prior verify phase
227           override-votes: true
228           gerrit-build-started-verified-value: 1
229           gerrit-build-successful-verified-value: 1
230           gerrit-build-failed-verified-value: 1
231           gerrit-build-unstable-verified-value: 1
232           gerrit-build-notbuilt-verified-value: 1
233           gerrit-build-started-codereview-value: 0
234           gerrit-build-successful-codereview-value: 0
235           gerrit-build-failed-codereview-value: 0
236           gerrit-build-unstable-codereview-value: 0
237           gerrit-build-notbuilt-codereview-value: 0
238
239 # TODO: Unify argument names across gerrit-trigger-* macros.
240 - trigger:
241     name: gerrit-trigger-patch-sonar
242     triggers:
243       - gerrit:
244           server-name: '{gerrit-server-name}'
245           trigger-on:
246             - comment-added-contains-event:
247                 comment-contains-value: 'run-sonar'
248           projects:
249             - project-compare-type: 'ANT'
250               project-pattern: '{name}'
251               branches:
252                 - branch-compare-type: 'ANT'
253                   branch-pattern: '**/master'
254           skip-vote:
255             successful: true
256             failed: true
257             unstable: true
258             notbuilt: true
259
260 - publisher:
261     name: email-notification
262     publishers:
263       - email-ext:
264           recipients: '{email-recipients}'
265           reply-to: ''
266           content-type: default
267           subject: '{email-prefix} $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!'
268           body: |
269               $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS:
270
271               Please refer to the logs server URL for console logs when possible
272               and use the Jenkins Build URL as a last resort.
273
274               Console Logs URL:
275               https://logs.opendaylight.org/$SILO/$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER
276
277               Jenkins Build URL:
278               $BUILD_URL
279           unstable: true
280           fixed: true
281           send-to:
282             - recipients
283
284 - builder:
285     # Deploys a maven site to Nexus using lftools nexus-zip command
286     name: opendaylight-infra-deploy-maven-site
287     builders:
288       - lf-provide-maven-settings:
289           global-settings-file: global-settings
290           settings-file: '{settings-file}'
291       - lf-infra-create-netrc:
292           server-id: opendaylight-site
293       - shell: !include-raw-escape:
294           - global-jjb/shell/lftools-install.sh
295           - opendaylight-infra-deploy-maven-site.sh
296       - lf-provide-maven-settings-cleanup
297
298 - builder:
299     name: opendaylight-infra-stack
300     # opendaylight-infra-stack.sh has a required variable {stack-template} that
301     # must be passed into this macro.
302     builders:
303       - shell: !include-raw: opendaylight-infra-stack.sh
304       - shell: !include-raw-escape: opendaylight-infra-copy-ssh-keys.sh
305
306 - builder:
307     name: opendaylight-infra-push-gerrit-patch
308     # opendaylight-infra-push-gerrit-patch.sh allows a job to push a patch to
309     # Gerrit in an automated fashion. This is meant for tasks that creates
310     # the same patch regularly and needs the ability to detect if an unreviewed
311     # patch already exists. In which case it will update the existing patch.
312     #
313     # Note: This patch assumes the $WORKSPACE contains the project repo with
314     #       the files changed already "git add" and waiting for a "git commit" call.
315     #
316     # This script requires the following JJB variables to be passed in:
317     #     {project}       Gerrit project-name
318     #     {gerrit-topic}  Gerrit topic, please make a unique topic.
319     #     {gerrit-commit-message} Commit message to assign to commit.
320     # NOTE: Requires git review to be installed on node.
321     builders:
322       - shell: !include-raw: opendaylight-infra-push-gerrit-patch.sh
323
324 - builder:
325     name: distribute-build-url
326     # Place URL of the current run of a build job to a file at given path.
327     builders:
328       - shell: |
329           #!/bin/bash
330           set +e  # DO NOT fail script if command returns non-zero.
331
332           echo "$BUILD_URL" > {path}/build.url
333
334           # DO NOT fail the build if the echo failed.
335           exit 0
336
337 - builder:
338     name: wipe-org-opendaylight-repo
339     builders:
340       - shell: 'if [ -d /tmp/r/org/opendaylight ]; then rm -rf /tmp/r/org/opendaylight; fi'
341
342 - builder:
343     name: wipe-local-maven-repo
344     builders:
345       - shell: 'if [ -d /tmp/r ]; then rm -rf /tmp/r; fi'
346
347 - builder:
348     name: jacoco-nojava-workaround
349     builders:
350       - shell: 'mkdir -p $WORKSPACE/target/classes $WORKSPACE/jacoco/classes'
351
352 - builder:
353     name: check-clm
354     builders:
355       - sonatype-clm:
356           application-name: '{application-name}'
357
358 - builder:
359     name: releng-check-unicode
360     builders:
361       - shell: |
362           $WORKSPACE/scripts/check-unicode.sh jjb/
363
364 - builder:
365     name: provide-maven-settings
366     builders:
367       - config-file-provider:
368           files:
369             - file-id: '{global-settings-file}'
370               variable: 'GLOBAL_SETTINGS_FILE'
371             - file-id: '{settings-file}'
372               variable: 'SETTINGS_FILE'
373
374 - builder:
375     name: releng-fetch-p2zip-if-necessary
376     builders:
377       - shell: |
378           # Cleanup any existing zips and metadata before we download the new update site
379           rm -f *.zip *.xml
380       - conditional-step:
381           condition-kind: strings-match
382           condition-string1: '$P2ZIP_URL'
383           condition-string2: ''
384           condition-basedir: workspace
385           steps:
386             # TODO: Figure out latest snapshot version number to pull rather than hardcoding 1.1.1-SNAPSHOT
387             - maven-target:
388                 maven-version: '{maven-version}'
389                 goals: >
390                     org.apache.maven.plugins:maven-dependency-plugin:get
391                     org.apache.maven.plugins:maven-dependency-plugin:copy
392                     -V -B
393                     -Dartifact=org.opendaylight.yangide:org.opendaylight.yangide.update-site:1.1.1-SNAPSHOT:zip
394                     -DoutputDirectory=$WORKSPACE
395                 settings: '{settings}'
396                 global-settings: '{global-settings}'
397
398 - builder:
399     name: releng-generate-p2pom
400     builders:
401       - shell: !include-raw: generate-p2pom.sh
402
403 - builder:
404     name: releng-update-p2composite-metadata
405     builders:
406       - shell: !include-raw: update-p2composite-metadata.sh
407       - conditional-step:
408           condition-kind: file-exists
409           condition-filename: deploy-composite-repo.xml
410           condition-basedir: workspace
411           steps:
412             - maven-target:
413                 maven-version: '{maven-version}'
414                 pom: 'deploy-composite-repo.xml'
415                 goals: 'clean deploy -V -B -Dmaven.repo.local=/tmp/r'
416                 settings: '{settings}'
417                 global-settings: '{global-settings}'
418
419 - builder:
420     name: releng-stage-release
421     builders:
422       - shell: !include-raw: stage-release.sh
423
424 - wrapper:
425     # This wrapper is required for all jobs as it configures the wrappers
426     # needed by OpenDaylight infra.
427     name: opendaylight-infra-wrappers
428     wrappers:
429       - mask-passwords
430       - config-file-provider:
431           files:
432             - file-id: npmrc
433               target: '$HOME/.npmrc'
434             - file-id: clouds-yaml
435               target: '$HOME/.config/openstack/clouds.yaml'
436       - timeout:
437           type: absolute
438           timeout: '{build-timeout}'
439           timeout-var: 'BUILD_TIMEOUT'
440           fail: true
441       - timestamps
442       - ssh-agent-credentials:
443           users:
444             - 'opendaylight-jenkins-ssh'
445       - openstack:
446           single-use: true
447
448 - publisher:
449     name: opendaylight-infra-generate-csit-status-report
450     publishers:
451       - postbuildscript:
452           builders:
453             - shell: !include-raw: generate-csit-status-report.sh
454           script-only-if-succeeded: false
455           script-only-if-failed: false
456           mark-unstable-if-failed: false