851cd70a9aa25745240bb4b967fb21f446d46a93
[releng/builder.git] / jjb / packaging / packaging.yaml
1 ---
2 - project:
3     name: packaging
4     project-name: packaging
5
6     jobs:
7       - 'packaging-build-rpm-{stream}'
8       - 'packaging-build-rpm-snap-{stream}'
9       - 'packaging-build-deb-{stream}'
10       - 'packaging-verify-full-rpm-master'
11       - 'packaging-verify-rpm-master'
12       - 'packaging-test-rpm-master'
13       - 'packaging-test-rpm-upgrade-master'
14       - 'packaging-test-deb-master'
15       - gerrit-tox-verify:
16           branch: master
17           stream: master
18
19     project: 'integration/packaging'
20
21     stream:
22       - carbon
23       - nitrogen
24       - oxygen
25     branch: 'master'
26
27     # common parameters required for 'lf-infra-deploy-maven-file' builder
28     group-id: 'org.opendaylight.integration-packaging'
29     upload-files-dir: '$WORKSPACE/upload_files'
30     maven-repo-url: '$NEXUS_URL/content/repositories/$REPO_ID'
31
32 - job-template:
33     name: 'packaging-build-rpm-{stream}'
34
35     node: centos7-builder-2c-8g
36
37     project-type: freestyle
38
39     mvn-opts: ''
40     mvn-params: ''
41     mvn-version: mvn33
42
43     properties:
44       - opendaylight-infra-properties:
45           build-days-to-keep: 7
46
47     parameters:
48       - opendaylight-infra-parameters:
49           os-cloud: '{os-cloud}'
50           project: '{project}'
51           branch: '{branch}'
52           refspec: 'refs/heads/{branch}'
53           artifacts: '{archive-artifacts}'
54       - lf-infra-maven-parameters:
55           mvn-opts: '{mvn-opts}'
56           mvn-params: '{mvn-params}'
57           mvn-version: '{mvn-version}'
58           staging-profile-id: ''
59       - string:
60           name: DOWNLOAD_URL
61           # yamllint disable-line rule:line-length
62           default: 'https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/karaf/0.7.0/karaf-0.7.0.tar.gz'
63           description: 'URL to ODL tarball artifact to repackage into RPM'
64       - string:
65           name: CHANGELOG_NAME
66           default: 'Jenkins'
67           description: 'Name of person who defined RPM'
68       - string:
69           name: CHANGELOG_EMAIL
70           default: 'jenkins-donotreply@opendaylight.org'
71           description: 'Email of person who defined RPM'
72
73     scm:
74       - integration-gerrit-scm:
75           basedir: 'packaging'
76           refspec: '$GERRIT_REFSPEC'
77           branch: 'master'
78
79     wrappers:
80       - opendaylight-infra-wrappers:
81           build-timeout: '{build-timeout}'
82
83     builders:
84       - shell: !include-raw-escape: build-rpm.sh
85       - install-test-uninstall-rpm
86       - lf-infra-deploy-maven-file:
87           global-settings-file: 'global-settings'
88           settings-file: 'packaging-settings'
89           mvn-version: '{mvn-version}'
90           repo-id: 'opendaylight-{stream}-epel-7-x86_64-devel'
91           group-id: '{group-id}'
92           upload-files-dir: '{upload-files-dir}'
93           maven-repo-url: '{maven-repo-url}'
94
95     publishers:
96       - lf-infra-publish
97
98
99 - job-template:
100     name: 'packaging-build-rpm-snap-{stream}'
101
102     node: centos7-builder-2c-8g
103
104     project-type: freestyle
105
106     mvn-opts: ''
107     mvn-params: ''
108     mvn-version: mvn33
109
110     properties:
111       - opendaylight-infra-properties:
112           build-days-to-keep: 7
113
114     parameters:
115       - opendaylight-infra-parameters:
116           os-cloud: '{os-cloud}'
117           project: '{project}'
118           branch: '{branch}'
119           refspec: 'refs/heads/{branch}'
120           artifacts: '{archive-artifacts}'
121       - lf-infra-maven-parameters:
122           mvn-opts: '{mvn-opts}'
123           mvn-params: '{mvn-params}'
124           mvn-version: '{mvn-version}'
125           staging-profile-id: ''
126       - string:
127           name: CHANGELOG_NAME
128           default: 'Jenkins'
129           description: 'Name of person who defined RPM'
130       - string:
131           name: CHANGELOG_EMAIL
132           default: 'jenkins-donotreply@opendaylight.org'
133           description: 'Email of person who defined RPM'
134
135     scm:
136       - integration-gerrit-scm:
137           basedir: 'packaging'
138           refspec: '$GERRIT_REFSPEC'
139           branch: 'master'
140
141     wrappers:
142       - opendaylight-infra-wrappers:
143           build-timeout: '{build-timeout}'
144
145     builders:
146       - inject:
147           properties-content: 'STREAM={stream}'
148       - shell: !include-raw: build-rpm-snap.sh
149       - install-test-uninstall-rpm
150       - lf-infra-deploy-maven-file:
151           global-settings-file: 'global-settings'
152           settings-file: 'packaging-settings'
153           mvn-version: '{mvn-version}'
154           repo-id: 'opendaylight-{stream}-epel-7-x86_64-devel'
155           group-id: '{group-id}'
156           upload-files-dir: '{upload-files-dir}'
157           maven-repo-url: '{maven-repo-url}'
158
159     triggers:
160       - timed: '@daily'
161
162     publishers:
163       - lf-infra-publish
164
165
166 - job-template:
167     name: 'packaging-verify-rpm-master'
168
169     node: centos7-builder-2c-8g
170
171     project-type: freestyle
172
173     parameters:
174       - opendaylight-infra-parameters:
175           os-cloud: '{os-cloud}'
176           project: '{project}'
177           branch: '{branch}'
178           refspec: 'refs/heads/{branch}'
179           artifacts: '{archive-artifacts}'
180
181     scm:
182       - integration-gerrit-scm:
183           basedir: 'packaging'
184           refspec: '$GERRIT_REFSPEC'
185           branch: 'master'
186
187     wrappers:
188       - opendaylight-infra-wrappers:
189           build-timeout: '{build-timeout}'
190
191     builders:
192       # TODO: Install/test each RPM? Will require builder script changes.
193       # Test Nitrogen tarball
194       - inject:
195           # yamllint disable-line rule:line-length
196           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/karaf/0.7.0/karaf-0.7.0.tar.gz'
197       - shell: !include-raw-escape: build-rpm.sh
198
199       # Test Oxygen pre-release autorelease tarball
200       # FIXME: There aren't any available Oxygen autorelease builds, add one once possible
201       # - inject:
202       # yamllint disable-line rule:line-length
203       #    properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/autorelease-2052/org/opendaylight/integration/karaf/0.8.0/karaf-0.8.0.tar.gz'
204       # - shell: !include-raw-escape: build-rpm.sh
205
206       # Test Oxygen multipatch zip (no parallel tarball available)
207       - inject:
208           # yamllint disable-line rule:line-length
209           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/integration/integration/distribution/karaf/0.8.0-SNAPSHOT/karaf-0.8.0-20180126.083749-120.zip'
210       - shell: !include-raw-escape: build-rpm.sh
211
212       # Test latest Oxygen snapshot
213       - inject:
214           properties-content: 'STREAM=oxygen'
215       - shell: !include-raw: build-rpm-snap.sh
216
217     triggers:
218       - gerrit:
219           server-name: '{gerrit-server-name}'
220           projects:
221             - project-compare-type: ANT
222               project-pattern: '{project}'
223               branches:
224                 - branch-compare-type: ANT
225                   branch-pattern: '**/{branch}'
226               file-paths:
227                 - compare-type: ANT
228                   pattern: 'packages/**'
229
230     publishers:
231       - lf-infra-publish
232
233
234 - job-template:
235     name: 'packaging-verify-full-rpm-master'
236
237     node: centos7-builder-2c-8g
238
239     project-type: freestyle
240
241     parameters:
242       - opendaylight-infra-parameters:
243           os-cloud: '{os-cloud}'
244           project: '{project}'
245           branch: '{branch}'
246           refspec: 'refs/heads/{branch}'
247           artifacts: '{archive-artifacts}'
248
249     scm:
250       - integration-gerrit-scm:
251           basedir: 'packaging'
252           refspec: '$GERRIT_REFSPEC'
253           branch: 'master'
254
255     wrappers:
256       - opendaylight-infra-wrappers:
257           build-timeout: '{build-timeout}'
258
259     builders:
260       # Test Carbon SR2 tarball
261       - inject:
262           # yamllint disable-line rule:line-length
263           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/distribution-karaf/0.6.2-Carbon/distribution-karaf-0.6.2-Carbon.tar.gz'
264       - shell: !include-raw-escape: build-rpm.sh
265       - install-test-uninstall-rpm
266
267       # Test Carbon multipatch zip (no parallel tarball available)
268       # NB: This will need to be updated as old builds expire
269       - inject:
270           # yamllint disable-line rule:line-length
271           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/integration/integration/distribution/distribution-karaf/0.6.3-SNAPSHOT/distribution-karaf-0.6.3-20180115.181738-1.zip'
272       - shell: !include-raw-escape: build-rpm.sh
273       - install-test-uninstall-rpm
274
275       # Test latest Carbon snapshot
276       - inject:
277           properties-content: 'STREAM=carbon'
278       - shell: !include-raw: build-rpm-snap.sh
279       - install-test-uninstall-rpm
280
281       # Test Nitrogen tarball
282       - inject:
283           # yamllint disable-line rule:line-length
284           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/karaf/0.7.0/karaf-0.7.0.tar.gz'
285       - shell: !include-raw-escape: build-rpm.sh
286       - install-test-uninstall-rpm
287
288       # Test Nitrogen SR1 tarball
289       - inject:
290           # yamllint disable-line rule:line-length
291           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/karaf/0.7.1/karaf-0.7.1.tar.gz'
292       - shell: !include-raw-escape: build-rpm.sh
293       - install-test-uninstall-rpm
294
295       # Test Nitrogen multipatch zip (no parallel tarball available)
296       # NB: This will need to be updated as old builds expire
297       - inject:
298           # yamllint disable-line rule:line-length
299           properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/integration/integration/distribution/karaf/0.7.2-SNAPSHOT/karaf-0.7.2-20180115.183312-2.zip'
300       - shell: !include-raw-escape: build-rpm.sh
301       - install-test-uninstall-rpm
302
303       # Test latest Nitrogen snapshot
304       - inject:
305           properties-content: 'STREAM=nitrogen'
306       - shell: !include-raw: build-rpm-snap.sh
307       - install-test-uninstall-rpm
308
309       # Test Oxygen pre-release autorelease tarball
310       # NB: This will need to be updated as old builds expire
311       # FIXME: There aren't any available Oxygen autorelease builds, add one once possible
312       # - inject:
313       # yamllint disable-line rule:line-length
314       #    properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/autorelease-2052/org/opendaylight/integration/karaf/0.8.0/karaf-0.8.0.tar.gz'
315       # - shell: !include-raw-escape: build-rpm.sh
316       # - install-test-uninstall-rpm
317
318       # Test Oxygen multipatch zip (no parallel tarball available)
319       # FIXME: Something is wrong with current Oxygen multipatch builds
320       # NB: This will need to be updated as old builds expire
321       # - inject:
322       # yamllint disable-line rule:line-length
323       #     properties-content: 'DOWNLOAD_URL=https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/integration/integration/distribution/karaf/0.8.0-SNAPSHOT/karaf-0.8.0-20180111.030942-90.zip'
324       # - shell: !include-raw: build-rpm.sh
325       # - install-test-uninstall-rpm
326
327       # Test latest Oxygen snapshot
328       - inject:
329           properties-content: 'STREAM=oxygen'
330       - shell: !include-raw: build-rpm-snap.sh
331       - install-test-uninstall-rpm
332
333     triggers:
334       - timed: '@daily'
335       - gerrit:
336           server-name: '{gerrit-server-name}'
337           trigger-on:
338             - comment-added-contains-event:
339                 comment-contains-value: 'verify-rpm-full'
340           projects:
341             - project-compare-type: ANT
342               project-pattern: '{project}'
343               branches:
344                 - branch-compare-type: ANT
345                   branch-pattern: '**/{branch}'
346
347     publishers:
348       - lf-infra-publish
349
350
351 - job-template:
352     name: 'packaging-test-rpm-master'
353
354     node: centos7-builder-2c-8g
355
356     parameters:
357       - opendaylight-infra-parameters:
358           os-cloud: '{os-cloud}'
359           project: '{project}'
360           branch: '{branch}'
361           refspec: 'refs/heads/{branch}'
362           artifacts: '{archive-artifacts}'
363       - string:
364           name: URL
365           # yamllint disable-line rule:line-length
366           default: 'https://git.opendaylight.org/gerrit/gitweb?p=integration/packaging.git;a=blob_plain;f=packages/rpm/example_repo_configs/opendaylight-8-devel.repo'
367           description: 'Link to .repo or .rpm file'
368
369     scm:
370       - integration-gerrit-scm:
371           basedir: 'packaging'
372           refspec: '$GERRIT_REFSPEC'
373           branch: 'master'
374
375     wrappers:
376       - opendaylight-infra-wrappers:
377           build-timeout: '{build-timeout}'
378
379     builders:
380       - shell: !include-raw-escape: install-rpm.sh
381       - shell: !include-raw: start-odl.sh
382       - shell: |
383           # Install expect to interact with Karaf shell
384           # Install nmap to check status of ODL's SSH port
385           sudo yum install -y expect nmap
386       - shell: !include-raw: test-karaf.expect
387       - shell: !include-raw-escape: test-rest-ok.sh
388       - shell: !include-raw: stop-odl.sh
389       - shell: !include-raw: uninstall-rpm.sh
390
391     publishers:
392       # TODO: Remove the archive publisher
393       #       small data should be stored on logs.opendaylight.org
394       #       large data should be stored on nexus.opendaylight.org
395       - archive:
396           artifacts: '**'
397           allow-empty: true
398           fingerprint: true
399           latest-only: true
400       - lf-infra-publish
401
402
403 - job-template:
404     name: 'packaging-test-rpm-upgrade-master'
405
406     node: centos7-builder-2c-8g
407
408     parameters:
409       - opendaylight-infra-parameters:
410           os-cloud: '{os-cloud}'
411           project: '{project}'
412           branch: '{branch}'
413           refspec: 'refs/heads/{branch}'
414           artifacts: '{archive-artifacts}'
415       - string:
416           name: URL
417           # yamllint disable-line rule:line-length
418           default: 'https://raw.githubusercontent.com/opendaylight/integration-packaging/master/packages/rpm/example_repo_configs/opendaylight-7-release.repo'
419           description: 'Link to .repo or .rpm file'
420       - string:
421           name: UPGRADE_URL
422           # yamllint disable-line rule:line-length
423           default: 'https://raw.githubusercontent.com/opendaylight/integration-packaging/master/packages/rpm/example_repo_configs/opendaylight-7-devel.repo'
424           description: 'Link to .repo or .rpm file'
425
426     scm:
427       - integration-gerrit-scm:
428           basedir: 'packaging'
429           refspec: '$GERRIT_REFSPEC'
430           branch: 'master'
431
432     wrappers:
433       - opendaylight-infra-wrappers:
434           build-timeout: '{build-timeout}'
435
436     builders:
437       - shell: !include-raw-escape: install-rpm.sh
438       - shell: !include-raw: start-odl.sh
439       - shell: |
440           # Install expect to interact with Karaf shell
441           sudo yum install -y expect
442           # Install nmap to check status of ODL's SSH port
443           sudo yum install -y nmap
444       - shell: !include-raw: test-karaf.expect
445       - shell: !include-raw: stop-odl.sh
446       - shell: !include-raw: test-rpm-upgrade.sh
447       - shell: !include-raw: start-odl.sh
448       - shell: !include-raw: test-karaf.expect
449       - shell: !include-raw: stop-odl.sh
450       - shell: !include-raw: uninstall-rpm.sh
451
452     publishers:
453       - lf-infra-publish
454
455
456 - job-template:
457     name: 'packaging-test-deb-master'
458
459     node: ubuntu1604-mininet-ovs-25-1c-4g
460
461     parameters:
462       - opendaylight-infra-parameters:
463           os-cloud: '{os-cloud}'
464           project: '{project}'
465           branch: '{branch}'
466           refspec: 'refs/heads/{branch}'
467           artifacts: '{archive-artifacts}'
468       - string:
469           name: PACKAGE
470           default: 'ppa:odl-team/carbon'
471           description: 'Link to .deb package or name of PPA repo'
472
473     scm:
474       - integration-gerrit-scm:
475           basedir: 'packaging'
476           refspec: '$GERRIT_REFSPEC'
477           branch: 'master'
478
479     wrappers:
480       - opendaylight-infra-wrappers:
481           build-timeout: '{build-timeout}'
482
483     builders:
484       - shell: !include-raw: install-deb.sh
485       - shell: !include-raw: start-odl.sh
486       - shell: |
487           # Install expect to interact with Karaf shell
488           sudo apt-get install -y expect
489           # Install nmap to check status of ODL's SSH port
490           sudo apt-get install -y nmap
491       - shell: !include-raw: test-karaf.expect
492       - shell: !include-raw: stop-odl.sh
493
494     publishers:
495       - lf-infra-publish
496
497
498 - job-template:
499     name: 'packaging-build-deb-{stream}'
500
501     node: ubuntu1604-mininet-ovs-25-1c-4g
502
503     project-type: freestyle
504
505     mvn-opts: ''
506     mvn-params: ''
507     mvn-version: mvn33
508
509     properties:
510       - opendaylight-infra-properties:
511           build-days-to-keep: 7
512
513     parameters:
514       - opendaylight-infra-parameters:
515           os-cloud: '{os-cloud}'
516           project: '{project}'
517           branch: '{branch}'
518           refspec: 'refs/heads/{branch}'
519           artifacts: '{archive-artifacts}'
520       - lf-infra-maven-parameters:
521           mvn-opts: '{mvn-opts}'
522           mvn-params: '{mvn-params}'
523           mvn-version: '{mvn-version}'
524           staging-profile-id: ''
525       - string:
526           name: DOWNLOAD_URL
527           # FIXME: Update the default value to an active stream.
528           # yamllint disable-line rule:line-length
529           default: 'https://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/distribution-karaf/0.5.3-Boron-SR3/distribution-karaf-0.5.3-Boron-SR3.tar.gz'
530           description: 'URL to ODL tarball artifact to repackage into .deb'
531       - string:
532           name: CHANGELOG_NAME
533           default: 'Jenkins'
534           description: 'Name of person who defined .deb'
535       - string:
536           name: CHANGELOG_EMAIL
537           default: 'jenkins-donotreply@opendaylight.org'
538           description: 'Email of person who defined .deb'
539
540     scm:
541       - integration-gerrit-scm:
542           basedir: 'packaging'
543           refspec: '$GERRIT_REFSPEC'
544           branch: 'master'
545
546     wrappers:
547       - opendaylight-infra-wrappers:
548           build-timeout: '{build-timeout}'
549
550     builders:
551       - shell: !include-raw: build-deb.sh
552       - lf-infra-deploy-maven-file:
553           global-settings-file: 'global-settings'
554           settings-file: 'packaging-settings'
555           mvn-version: '{mvn-version}'
556           repo-id: 'opendaylight-{stream}-ubuntu-1604-x86_64-devel'
557           group-id: '{group-id}'
558           upload-files-dir: '{upload-files-dir}'
559           maven-repo-url: '{maven-repo-url}'
560
561     publishers:
562       - lf-infra-publish