Switch global-jjb jobs to use mvn35
[releng/builder.git] / jjb / integration / integration-templates.yaml
1 ---
2 # Job templates in this file (please update with every new template):
3 # FIXME: Update
4 #
5 # {project}-csit-1node-{functionality}-{install}-{stream}
6 # {project}-csit-3node-docker-{functionality}-{install}-{stream}
7 # {project}-csit-3node-{functionality}-{install}-{stream}
8 # {project}-csit-hwvtep-{topology}-openstack-{openstack}-{functionality}-{stream}
9 # {project}-csit-{topology}-openstack-{openstack}-{functionality}-{stream}
10 # {project}-csit-verify-1node-{functionality}
11 # {project}-csit-verify-3node-{functionality}
12 # {project}-patch-test-{feature}-{stream}
13 #
14 # Parameters:
15 # FIXME: Distinguish variables, macros and arguments, then update.
16 #
17 # opendaylight-infra-parameters: main project integration/test ($PROJECT)
18 # jre: (openjdk7 or openjdk8) Java runtime environment to use when launching ODL
19 # integration-distribution-branch: distribution branch ($DISTROBRANCH)
20 # integration-controller-bundle-url: distribution URL ($BUNDLE_URL)
21 # integration-controller-scope: only or all features ($CONTROLLERSCOPE)
22 # integration-controller-features: features under test ($CONTROLLER FEATURES)
23 # integration-test-options: robot options ($TESTOPTIONS)
24 # integration-stream-test-plan: stream specific robot test plan ($STREAMTESTPLAN)
25 # integration-test-plan: fallback robot test plan ($TESTPLAN)
26 # integration-patch-refspec: test branch ($PATCHREFSPEC)
27 # integration-use-features-boot: bool to toggle use of featuresBoot ($USEFEATURESBOOT)
28
29
30 # New templates
31
32 - job-template:
33     name: '{prefix}{project}-csit-verify-1node-{functionality}'
34     id: inttest-csit-verify-1node
35     disabled: false
36
37     project-type: freestyle
38     node: centos7-robot-2c-8g
39
40     properties:
41       - opendaylight-infra-properties:
42           build-days-to-keep: '{build-days-to-keep}'
43
44     parameters:
45       - opendaylight-infra-parameters:
46           os-cloud: '{os-cloud}'
47           project: 'integration/test'
48           branch: '{branch}'
49           refspec: 'refs/heads/{branch}'
50           artifacts: '{archive-artifacts}'
51       - integration-distribution-branch:
52           branch: '{verify-branch}'
53       - integration-distribution-stream:
54           stream: '{verify-stream}'
55       - integration-bundle-url:
56           bundle-url: '{bundle-url}'
57       - integration-repo-url:
58           repo-url: '{repo-url}'
59       - integration-controller-scope:
60           controller-scope: 'only'
61       - integration-controller-features:
62           controller-features: '{install-features}'
63       - integration-test-options:
64           test-options: '{robot-options}'
65       - integration-stream-test-plan:
66           stream-test-plan: '{project}-{functionality}-{verify-stream}.txt'
67       - integration-test-plan:
68           test-plan: '{project}-{functionality}.txt'
69       - integration-jdk-version:
70           jdkversion: '{verify-jdkversion}'
71       - distribution-karaf-version:
72           karaf-version: '{verify-karaf-version}'
73       - integration-use-features-boot:
74           use-features-boot: 'True'
75     scm:
76       - integration-gerrit-scm:
77           basedir: 'test'
78           refspec: '$GERRIT_REFSPEC'
79           branch: 'master'
80
81     wrappers:
82       - opendaylight-infra-wrappers:
83           build-timeout: '{build-timeout}'
84
85     triggers:
86       - integration-trigger-patch-submitted:
87           gerrit-server-name: '{gerrit-server-name}'
88           project: 'integration/test'
89           branch: 'master'
90           files: 'csit/suites/{project}/**'
91
92     builders:
93       - integration-infra-stack:
94           stack-template: '{stack-template}'
95           vm_0_count: '1'
96           vm_0_flavor: '{odl_system_flavor}'
97           vm_0_image: '{odl_system_image}'
98           vm_1_count: '{tools_system_count}'
99           vm_1_flavor: '{tools_system_flavor}'
100           vm_1_image: '{tools_system_image}'
101       - integration-install-robotframework
102       - inject:
103           properties-file: 'env.properties'
104       - integration-get-slave-addresses
105       - inject:
106           properties-file: 'slave_addresses.txt'
107       - integration-detect-variables
108       - integration-install-common-functions
109       - integration-deploy-controller-run-test
110       - integration-cleanup-tmp
111
112     publishers:
113       - integration-robot:
114           unstable-if: 0.0
115           pass-if: 100.0
116       - email-notification:
117           email-recipients: '{email-recipients}'
118           email-prefix: '[{project}]'
119       - integration-csit-archive-build
120       - integration-csit-run-postscript
121       - lf-infra-publish
122
123 - job-template:
124     name: '{prefix}{project}-csit-1node-{functionality}-{install}-{stream}'
125     id: inttest-csit-1node
126     # Keep synchronized with *-csit4-*-carbon please.
127     disabled: false
128
129     project-type: freestyle
130     node: centos7-robot-2c-8g
131
132     properties:
133       - opendaylight-infra-properties:
134           build-days-to-keep: '{build-days-to-keep}'
135
136     parameters:
137       - opendaylight-infra-parameters:
138           os-cloud: '{os-cloud}'
139           project: 'integration/test'
140           branch: '{branch}'
141           refspec: 'refs/heads/{branch}'
142           artifacts: '{archive-artifacts}'
143       - integration-distribution-branch:
144           branch: '{branch}'
145       - integration-distribution-stream:
146           stream: '{stream}'
147       - integration-bundle-url:
148           bundle-url: '{bundle-url}'
149       - integration-repo-url:
150           repo-url: '{repo-url}'
151       - integration-controller-scope:
152           controller-scope: '{scope}'
153       - integration-controller-features:
154           controller-features: '{install-features}'
155       - integration-test-options:
156           test-options: '{robot-options}'
157       - integration-stream-test-plan:
158           stream-test-plan: '{project}-{functionality}-{stream}.txt'
159       - integration-test-plan:
160           test-plan: '{project}-{functionality}.txt'
161       - integration-test-suites:
162           test-suites: '{test-suites}'
163       - integration-patch-refspec:
164           branch: 'master'
165       - integration-jdk-version:
166           jdkversion: '{jre}'
167       - distribution-karaf-version:
168           karaf-version: '{karaf-version}'
169       - integration-use-features-boot:
170           use-features-boot: 'True'
171
172     scm:
173       - integration-gerrit-scm:
174           basedir: 'test'
175           refspec: '$PATCHREFSPEC'
176           branch: 'master'
177
178     triggers:
179       # we need this for not SR projects
180       - integration-csit-trigger:
181           jobs: '{trigger-jobs}'
182
183     wrappers:
184       - opendaylight-infra-wrappers:
185           build-timeout: '{build-timeout}'
186
187     builders:
188       - integration-infra-stack:
189           stack-template: '{stack-template}'
190           vm_0_count: '1'
191           vm_0_flavor: '{odl_system_flavor}'
192           vm_0_image: '{odl_system_image}'
193           vm_1_count: '{tools_system_count}'
194           vm_1_flavor: '{tools_system_flavor}'
195           vm_1_image: '{tools_system_image}'
196       - integration-install-robotframework
197       - inject:
198           properties-file: 'env.properties'
199       - integration-get-slave-addresses
200       - inject:
201           properties-file: 'slave_addresses.txt'
202       - integration-detect-variables
203       - integration-install-common-functions
204       - integration-deploy-controller-run-test
205       - integration-cleanup-tmp
206
207     publishers:
208       - integration-robot:
209           unstable-if: 0.0
210           pass-if: 100.0
211       - email-notification:
212           email-recipients: '{email-recipients}'
213           email-prefix: '[{project}]'
214       - plot:
215           - title: '{01-plot-title}'
216             yaxis: '{01-plot-yaxis}'
217             group: '{01-plot-group}'
218             num-builds: '180'
219             keep-records: true
220             style: line
221             use-description: false
222             # yamllint disable-line rule:line-length
223             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv'
224             series:
225               - file: '{01-plot-data-file}'
226                 inclusion-flag: 'off'
227                 display-table: true
228                 format: csv
229           - title: '{02-plot-title}'
230             yaxis: '{02-plot-yaxis}'
231             group: '{02-plot-group}'
232             num-builds: '180'
233             keep-records: true
234             style: line
235             use-description: false
236             # yamllint disable-line rule:line-length
237             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv'
238             series:
239               - file: '{02-plot-data-file}'
240                 inclusion-flag: 'off'
241                 display-table: true
242                 format: csv
243           - title: '{03-plot-title}'
244             yaxis: '{03-plot-yaxis}'
245             group: '{03-plot-group}'
246             num-builds: '180'
247             keep-records: true
248             style: line
249             use-description: false
250             # yamllint disable-line rule:line-length
251             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{03-plot-data-file}-03-history.csv'
252             series:
253               - file: '{03-plot-data-file}'
254                 inclusion-flag: '{03-inclusion-flag}'
255                 exclude: '{03-exclude-value}'
256                 format: csv
257           - title: '{04-plot-title}'
258             yaxis: '{04-plot-yaxis}'
259             group: '{04-plot-group}'
260             num-builds: '180'
261             keep-records: true
262             style: line
263             use-description: false
264             # yamllint disable-line rule:line-length
265             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{04-plot-data-file}-04-history.csv'
266             series:
267               - file: '{04-plot-data-file}'
268                 inclusion-flag: '{04-inclusion-flag}'
269                 exclude: '{04-exclude-value}'
270                 format: csv
271           - title: '{05-plot-title}'
272             yaxis: '{05-plot-yaxis}'
273             group: '{05-plot-group}'
274             num-builds: '180'
275             keep-records: true
276             style: line
277             use-description: false
278             # yamllint disable-line rule:line-length
279             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{05-plot-data-file}-05-history.csv'
280             series:
281               - file: '{05-plot-data-file}'
282                 inclusion-flag: '{05-inclusion-flag}'
283                 exclude: '{05-exclude-value}'
284                 format: csv
285           - title: '{06-plot-title}'
286             yaxis: '{06-plot-yaxis}'
287             group: '{06-plot-group}'
288             num-builds: '180'
289             keep-records: true
290             style: line
291             use-description: false
292             # yamllint disable-line rule:line-length
293             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{06-plot-data-file}-06-history.csv'
294             series:
295               - file: '{06-plot-data-file}'
296                 inclusion-flag: '{06-inclusion-flag}'
297                 exclude: '{06-exclude-value}'
298                 format: csv
299           - title: '{07-plot-title}'
300             yaxis: '{07-plot-yaxis}'
301             group: '{07-plot-group}'
302             num-builds: '180'
303             keep-records: true
304             style: line
305             use-description: false
306             # yamllint disable-line rule:line-length
307             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{07-plot-data-file}-07-history.csv'
308             series:
309               - file: '{07-plot-data-file}'
310                 inclusion-flag: '{07-inclusion-flag}'
311                 exclude: '{07-exclude-value}'
312                 format: csv
313           - title: '{08-plot-title}'
314             yaxis: '{08-plot-yaxis}'
315             group: '{08-plot-group}'
316             num-builds: '180'
317             keep-records: true
318             style: line
319             use-description: false
320             # yamllint disable-line rule:line-length
321             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{08-plot-data-file}-08-history.csv'
322             series:
323               - file: '{08-plot-data-file}'
324                 inclusion-flag: '{08-inclusion-flag}'
325                 exclude: '{08-exclude-value}'
326                 format: csv
327           - title: '{09-plot-title}'
328             yaxis: '{09-plot-yaxis}'
329             group: '{09-plot-group}'
330             num-builds: '180'
331             keep-records: true
332             style: line
333             use-description: false
334             # yamllint disable-line rule:line-length
335             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{09-plot-data-file}-09-history.csv'
336             series:
337               - file: '{09-plot-data-file}'
338                 inclusion-flag: '{09-inclusion-flag}'
339                 exclude: '{09-exclude-value}'
340                 format: csv
341           - title: '{10-plot-title}'
342             yaxis: '{10-plot-yaxis}'
343             group: '{10-plot-group}'
344             num-builds: '180'
345             keep-records: true
346             style: line
347             use-description: false
348             # yamllint disable-line rule:line-length
349             csv-file-name: '{project}-csit-1node-{functionality}-{install}-{stream}-{10-plot-data-file}-10-history.csv'
350             series:
351               - file: '{10-plot-data-file}'
352                 inclusion-flag: '{10-inclusion-flag}'
353                 exclude: '{10-exclude-value}'
354                 format: csv
355       - integration-csit-archive-build
356       - integration-csit-run-postscript
357       - lf-infra-publish
358
359 - job-template:
360     name: '{prefix}{project}-csit-verify-3node-{functionality}'
361     id: inttest-csit-verify-3node
362     disabled: false
363
364     project-type: freestyle
365     node: centos7-robot-2c-8g
366
367     properties:
368       - opendaylight-infra-properties:
369           build-days-to-keep: '{build-days-to-keep}'
370
371     parameters:
372       - opendaylight-infra-parameters:
373           os-cloud: '{os-cloud}'
374           project: 'integration/test'
375           branch: '{branch}'
376           refspec: 'refs/heads/{branch}'
377           artifacts: '{archive-artifacts}'
378       - integration-distribution-branch:
379           branch: '{verify-branch}'
380       - integration-distribution-stream:
381           stream: '{verify-stream}'
382       - integration-bundle-url:
383           bundle-url: '{bundle-url}'
384       - integration-repo-url:
385           repo-url: '{repo-url}'
386       - integration-controller-scope:
387           controller-scope: 'only'
388       - integration-controller-features:
389           controller-features: 'odl-jolokia,{install-features}'
390       - integration-test-options:
391           test-options: '{robot-options}'
392       - integration-stream-test-plan:
393           stream-test-plan: '{project}-{functionality}-{verify-stream}.txt'
394       - integration-test-plan:
395           test-plan: '{project}-{functionality}.txt'
396       - integration-test-suites:
397           test-suites: '{test-suites}'
398       - integration-jdk-version:
399           jdkversion: '{verify-jdkversion}'
400       - distribution-karaf-version:
401           karaf-version: '{verify-karaf-version}'
402       - integration-use-features-boot:
403           use-features-boot: 'True'
404
405     scm:
406       - integration-gerrit-scm:
407           basedir: 'test'
408           refspec: '$GERRIT_REFSPEC'
409           branch: 'master'
410
411     wrappers:
412       - opendaylight-infra-wrappers:
413           build-timeout: '{build-timeout}'
414
415     triggers:
416       - integration-trigger-patch-submitted:
417           gerrit-server-name: '{gerrit-server-name}'
418           project: 'integration/test'
419           branch: 'master'
420           files: 'csit/suites/{project}/**'
421
422     builders:
423       - integration-infra-stack:
424           stack-template: '{stack-template}'
425           vm_0_count: '3'
426           vm_0_flavor: '{odl_system_flavor}'
427           vm_0_image: '{odl_system_image}'
428           vm_1_count: '{tools_system_count}'
429           vm_1_flavor: '{tools_system_flavor}'
430           vm_1_image: '{tools_system_image}'
431       - integration-install-robotframework
432       - inject:
433           properties-file: 'env.properties'
434       - integration-get-slave-addresses
435       - inject:
436           properties-file: 'slave_addresses.txt'
437       - integration-detect-variables
438       - integration-install-common-functions
439       - integration-configure-clustering
440       - integration-start-cluster-run-test
441       - integration-cleanup-tmp
442
443     publishers:
444       - integration-robot:
445           unstable-if: 0.0
446           pass-if: 100.0
447       - email-notification:
448           email-recipients: '{email-recipients}'
449           email-prefix: '[{project}]'
450       - integration-csit-archive-build
451       - integration-csit-run-postscript
452       - lf-infra-publish
453
454 - job-template:
455     name: '{prefix}{project}-csit-3node-{functionality}-{install}-{stream}'
456     id: inttest-csit-3node
457     disabled: false
458
459     project-type: freestyle
460     node: centos7-robot-2c-8g
461
462     properties:
463       - opendaylight-infra-properties:
464           build-days-to-keep: '{build-days-to-keep}'
465
466     parameters:
467       - opendaylight-infra-parameters:
468           os-cloud: '{os-cloud}'
469           project: 'integration/test'
470           branch: '{branch}'
471           refspec: 'refs/heads/{branch}'
472           artifacts: '{archive-artifacts}'
473       - integration-distribution-branch:
474           branch: '{branch}'
475       - integration-distribution-stream:
476           stream: '{stream}'
477       - integration-bundle-url:
478           bundle-url: '{bundle-url}'
479       - integration-repo-url:
480           repo-url: '{repo-url}'
481       - integration-controller-scope:
482           controller-scope: '{scope}'
483       - integration-controller-features:
484           controller-features: 'odl-jolokia,{install-features}'
485       - integration-test-options:
486           test-options: '{robot-options}'
487       - integration-stream-test-plan:
488           stream-test-plan: '{project}-{functionality}-{stream}.txt'
489       - integration-test-plan:
490           test-plan: '{project}-{functionality}.txt'
491       - integration-test-suites:
492           test-suites: '{test-suites}'
493       - integration-patch-refspec:
494           branch: 'master'
495       - integration-jdk-version:
496           jdkversion: '{jre}'
497       - distribution-karaf-version:
498           karaf-version: '{karaf-version}'
499       - integration-use-features-boot:
500           use-features-boot: 'True'
501
502     scm:
503       - integration-gerrit-scm:
504           basedir: 'test'
505           refspec: '$PATCHREFSPEC'
506           branch: 'master'
507
508     wrappers:
509       - opendaylight-infra-wrappers:
510           build-timeout: '{build-timeout}'
511
512     builders:
513       - integration-infra-stack:
514           stack-template: '{stack-template}'
515           vm_0_count: '3'
516           vm_0_flavor: '{odl_system_flavor}'
517           vm_0_image: '{odl_system_image}'
518           vm_1_count: '{tools_system_count}'
519           vm_1_flavor: '{tools_system_flavor}'
520           vm_1_image: '{tools_system_image}'
521       - integration-install-robotframework
522       - inject:
523           properties-file: 'env.properties'
524       - integration-get-slave-addresses
525       - inject:
526           properties-file: 'slave_addresses.txt'
527       - integration-detect-variables
528       - integration-install-common-functions
529       - integration-configure-clustering
530       - integration-start-cluster-run-test
531       - integration-cleanup-tmp
532
533     publishers:
534       - integration-robot:
535           unstable-if: 0.0
536           pass-if: 100.0
537       - email-notification:
538           email-recipients: '{email-recipients}'
539           email-prefix: '[{project}]'
540       - plot:
541           - title: '{01-plot-title}'
542             yaxis: '{01-plot-yaxis}'
543             group: '{01-plot-group}'
544             num-builds: '180'
545             keep-records: true
546             style: line
547             use-description: false
548             # yamllint disable-line rule:line-length
549             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv'
550             series:
551               - file: '{01-plot-data-file}'
552                 inclusion-flag: 'off'
553                 display-table: true
554                 format: csv
555           - title: '{02-plot-title}'
556             yaxis: '{02-plot-yaxis}'
557             group: '{02-plot-group}'
558             num-builds: '180'
559             keep-records: true
560             style: line
561             use-description: false
562             # yamllint disable-line rule:line-length
563             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv'
564             series:
565               - file: '{02-plot-data-file}'
566                 inclusion-flag: 'off'
567                 display-table: true
568                 format: csv
569           - title: '{03-plot-title}'
570             yaxis: '{03-plot-yaxis}'
571             group: '{03-plot-group}'
572             num-builds: '180'
573             keep-records: true
574             style: line
575             use-description: false
576             # yamllint disable-line rule:line-length
577             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{03-plot-data-file}-03-history.csv'
578             series:
579               - file: '{03-plot-data-file}'
580                 inclusion-flag: '{03-inclusion-flag}'
581                 exclude: '{03-exclude-value}'
582                 format: csv
583           - title: '{04-plot-title}'
584             yaxis: '{04-plot-yaxis}'
585             group: '{04-plot-group}'
586             num-builds: '180'
587             keep-records: true
588             style: line
589             use-description: false
590             # yamllint disable-line rule:line-length
591             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{04-plot-data-file}-04-history.csv'
592             series:
593               - file: '{04-plot-data-file}'
594                 inclusion-flag: '{04-inclusion-flag}'
595                 exclude: '{04-exclude-value}'
596                 format: csv
597           - title: '{05-plot-title}'
598             yaxis: '{05-plot-yaxis}'
599             group: '{05-plot-group}'
600             num-builds: '180'
601             keep-records: true
602             style: line
603             use-description: false
604             # yamllint disable-line rule:line-length
605             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{05-plot-data-file}-05-history.csv'
606             series:
607               - file: '{05-plot-data-file}'
608                 inclusion-flag: '{05-inclusion-flag}'
609                 exclude: '{05-exclude-value}'
610                 format: csv
611           - title: '{06-plot-title}'
612             yaxis: '{06-plot-yaxis}'
613             group: '{06-plot-group}'
614             num-builds: '180'
615             keep-records: true
616             style: line
617             use-description: false
618             # yamllint disable-line rule:line-length
619             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{06-plot-data-file}-06-history.csv'
620             series:
621               - file: '{06-plot-data-file}'
622                 inclusion-flag: '{06-inclusion-flag}'
623                 exclude: '{06-exclude-value}'
624                 format: csv
625           - title: '{07-plot-title}'
626             yaxis: '{07-plot-yaxis}'
627             group: '{07-plot-group}'
628             num-builds: '180'
629             keep-records: true
630             style: line
631             use-description: false
632             # yamllint disable-line rule:line-length
633             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{07-plot-data-file}-07-history.csv'
634             series:
635               - file: '{07-plot-data-file}'
636                 inclusion-flag: '{07-inclusion-flag}'
637                 exclude: '{07-exclude-value}'
638                 format: csv
639           - title: '{08-plot-title}'
640             yaxis: '{08-plot-yaxis}'
641             group: '{08-plot-group}'
642             num-builds: '180'
643             keep-records: true
644             style: line
645             use-description: false
646             # yamllint disable-line rule:line-length
647             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{08-plot-data-file}-08-history.csv'
648             series:
649               - file: '{08-plot-data-file}'
650                 inclusion-flag: '{08-inclusion-flag}'
651                 exclude: '{08-exclude-value}'
652                 format: csv
653           - title: '{09-plot-title}'
654             yaxis: '{09-plot-yaxis}'
655             group: '{09-plot-group}'
656             num-builds: '180'
657             keep-records: true
658             style: line
659             use-description: false
660             # yamllint disable-line rule:line-length
661             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{09-plot-data-file}-09-history.csv'
662             series:
663               - file: '{09-plot-data-file}'
664                 inclusion-flag: '{09-inclusion-flag}'
665                 exclude: '{09-exclude-value}'
666                 format: csv
667           - title: '{10-plot-title}'
668             yaxis: '{10-plot-yaxis}'
669             group: '{10-plot-group}'
670             num-builds: '180'
671             keep-records: true
672             style: line
673             use-description: false
674             # yamllint disable-line rule:line-length
675             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{10-plot-data-file}-10-history.csv'
676             series:
677               - file: '{10-plot-data-file}'
678                 inclusion-flag: '{10-inclusion-flag}'
679                 exclude: '{10-exclude-value}'
680                 format: csv
681       - integration-csit-archive-build
682       - integration-csit-run-postscript
683       - lf-infra-publish
684
685 - job-template:
686     name: '{prefix}{project}-csit-3node-docker-{functionality}-{install}-{stream}'
687     id: inttest-csit-3node-docker
688     disabled: false
689
690     project-type: freestyle
691     node: centos7-robot-2c-8g
692
693     properties:
694       - opendaylight-infra-properties:
695           build-days-to-keep: '{build-days-to-keep}'
696
697     parameters:
698       - opendaylight-infra-parameters:
699           os-cloud: '{os-cloud}'
700           project: 'integration/test'
701           branch: '{branch}'
702           refspec: 'refs/heads/{branch}'
703           artifacts: '{archive-artifacts}'
704       - integration-distribution-branch:
705           branch: '{branch}'
706       - integration-distribution-stream:
707           stream: '{stream}'
708       - integration-bundle-url:
709           bundle-url: '{bundle-url}'
710       - integration-repo-url:
711           repo-url: '{repo-url}'
712       - integration-controller-scope:
713           controller-scope: '{scope}'
714       - integration-controller-features:
715           controller-features: 'odl-jolokia,{install-features}'
716       - integration-test-options:
717           test-options: '{robot-options}'
718       - integration-stream-test-plan:
719           stream-test-plan: '{project}-{functionality}-{stream}.txt'
720       - integration-test-plan:
721           test-plan: '{project}-{functionality}.txt'
722       - integration-patch-refspec:
723           branch: 'master'
724       - integration-jdk-version:
725           jdkversion: '{jre}'
726       - distribution-karaf-version:
727           karaf-version: '{karaf-version}'
728       - integration-use-features-boot:
729           use-features-boot: 'True'
730
731     scm:
732       - integration-gerrit-scm:
733           basedir: 'test'
734           refspec: '$PATCHREFSPEC'
735           branch: 'master'
736
737     wrappers:
738       - opendaylight-infra-wrappers:
739           build-timeout: '{build-timeout}'
740
741     builders:
742       - integration-infra-stack:
743           stack-template: '{stack-template}'
744           vm_0_count: '3'
745           vm_0_flavor: '{odl_system_flavor}'
746           vm_0_image: '{odl_system_image}'
747           vm_1_count: '{docker_system_count}'
748           vm_1_flavor: '{docker_system_flavor}'
749           vm_1_image: '{docker_system_image}'
750       - integration-install-robotframework
751       - inject:
752           properties-file: 'env.properties'
753       - integration-get-slave-addresses
754       - inject:
755           properties-file: 'slave_addresses.txt'
756       - integration-detect-variables
757       - integration-install-common-functions
758       - integration-configure-clustering
759       - integration-start-cluster-run-test
760       - integration-cleanup-tmp
761
762     publishers:
763       - integration-robot:
764           unstable-if: 0.0
765           pass-if: 100.0
766       - email-notification:
767           email-recipients: '{email-recipients}'
768           email-prefix: '[{project}]'
769       - plot:
770           - title: '{01-plot-title}'
771             yaxis: '{01-plot-yaxis}'
772             group: '{01-plot-group}'
773             num-builds: '5400'
774             keep-records: true
775             style: line
776             use-description: false
777             # yamllint disable-line rule:line-length
778             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv'
779             series:
780               - file: '{01-plot-data-file}'
781                 inclusion-flag: 'off'
782                 display-table: true
783                 format: csv
784           - title: '{02-plot-title}'
785             yaxis: '{02-plot-yaxis}'
786             group: '{02-plot-group}'
787             num-builds: '5400'
788             keep-records: true
789             style: line
790             use-description: false
791             # yamllint disable-line rule:line-length
792             csv-file-name: '{project}-csit-3node-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv'
793             series:
794               - file: '{02-plot-data-file}'
795                 inclusion-flag: 'off'
796                 display-table: true
797                 format: csv
798       - integration-csit-archive-build
799       - integration-csit-run-postscript
800       - lf-infra-publish
801
802 - job-template:
803     name: '{prefix}{project}-csit-hwvtep-{topology}-openstack-{openstack}-{functionality}-{stream}'
804     id: inttest-csit-hwvtep-openstack
805     disabled: false
806
807     project-type: freestyle
808     node: centos7-robot-2c-8g
809     concurrent: true
810
811     properties:
812       - opendaylight-infra-properties:
813           build-days-to-keep: '{build-days-to-keep}'
814
815     parameters:
816       - opendaylight-infra-parameters:
817           os-cloud: '{os-cloud}'
818           project: 'integration/test'
819           branch: '{branch}'
820           refspec: 'refs/heads/{branch}'
821           artifacts: '{archive-artifacts}'
822       - integration-distribution-branch:
823           branch: '{branch}'
824       - integration-distribution-stream:
825           stream: '{stream}'
826       - integration-bundle-url:
827           bundle-url: '{bundle-url}'
828       - integration-repo-url:
829           repo-url: '{repo-url}'
830       - integration-controller-features:
831           controller-features: '{install-features}'
832       - integration-controller-debug-map:
833           controller-debug-map: '{debug-map}'
834       - integration-test-options:
835           test-options: '{robot-options}'
836       - integration-test-plan:
837           test-plan: '{testplan}'
838       - integration-test-suites:
839           test-suites: '{test-suites}'
840       - integration-patch-refspec:
841           branch: 'master'
842       - integration-jdk-version:
843           jdkversion: '{jre}'
844       - distribution-karaf-version:
845           karaf-version: '{karaf-version}'
846       - integration-use-features-boot:
847           use-features-boot: '{use-features-boot}'
848       - string:
849           name: OPENSTACK_BRANCH
850           default: '{openstack-branch}'
851           description: 'Openstack version to use with devstack'
852       - string:
853           name: DEVSTACK_HASH
854           default: '{devstack-hash}'
855           description: 'devstack hash to checkout'
856       - string:
857           name: ODL_ML2_DRIVER_REPO
858           default: '{odl-ml2-driver-repo}'
859           description: 'URL to fetch networking-odl driver'
860       - string:
861           name: ODL_ML2_BRANCH
862           default: '{odl-ml2-branch}'
863           description: 'Version of networking-odl to checkout from the repo'
864       - string:
865           name: ODL_ML2_DRIVER_VERSION
866           default: '{odl-ml2-driver-version}'
867           description: 'Mode of networking-odl (v1 or v2)'
868       - string:
869           name: ODL_ML2_PORT_BINDING
870           default: '{odl-ml2-port-binding}'
871           description: 'Method of networking-odl port-binding (pseudo-agentdb-binding or legacy-port-binding or
872           network-topology)'
873       - string:
874           name: DEVSTACK_KUBERNETES_PLUGIN_REPO
875           default: '{devstack-kubernetes-plugin-repo}'
876           description: 'URL to fetch kubernetes devstack plugin'
877       - string:
878           name: DEVSTACK_LBAAS_PLUGIN_REPO
879           default: '{devstack-lbaas-plugin-repo}'
880           description: 'URL to fetch neutron-lbaas devstack plugin'
881       - string:
882           name: DEVSTACK_NETWORKING_SFC_PLUGIN_REPO
883           default: '{devstack-networking-sfc-plugin-repo}'
884           description: 'URL to fetch neutron-lbaas devstack plugin'
885       - string:
886           name: ODL_ENABLE_L3_FWD
887           default: '{odl-enable-l3}'
888           description: 'Enable L3 FWD in ODL for createing br-ex'
889       - string:
890           name: IPSEC_VXLAN_TUNNELS_ENABLED
891           default: '{ipsec-vxlan-tunnels-enabled}'
892           description: 'Enable ipsec over vxlan support for all controllers and computes'
893       - string:
894           name: PUBLIC_BRIDGE
895           default: '{public-bridge}'
896           description: 'Specifies public bridge for provider and external networking'
897       - string:
898           name: ENABLE_HAPROXY_FOR_NEUTRON
899           default: '{enable-haproxy}'
900           description: 'Enable HAProxy for using neutron interface as HA'
901       - string:
902           name: ENABLE_OS_SERVICES
903           default: '{enable-openstack-services}'
904           description: 'comma separated list of services to enable on controller nodes'
905       - string:
906           name: ENABLE_OS_COMPUTE_SERVICES
907           default: '{enable-openstack-compute-services}'
908           description: 'comma separated list of services to enable on compute nodes'
909       - string:
910           name: ENABLE_OS_NETWORK_SERVICES
911           default: '{enable-openstack-network-services}'
912           description: 'comma seperated list of network services to enable'
913       - string:
914           name: ENABLE_OS_PLUGINS
915           default: '{enable-openstack-plugins}'
916           description: 'comma seperated list of plugins to enable'
917       - string:
918           name: DISABLE_OS_SERVICES
919           default: '{disable-openstack-services}'
920           description: 'comma seperated list of services to enable'
921       - string:
922           name: TENANT_NETWORK_TYPE
923           default: '{tenant-network-type}'
924           description: 'Tenant Network Type supported by the implementation'
925       - string:
926           name: SECURITY_GROUP_MODE
927           default: '{security-group-mode}'
928           description: 'Security Group Mode to be used in netvirt aclservice config'
929       - string:
930           name: PUBLIC_PHYSICAL_NETWORK
931           default: '{public-physical-network}'
932           description: 'provider physical network used for flat/vlan networks'
933       - string:
934           name: ENABLE_NETWORKING_L2GW
935           default: '{enable-networking-l2gw}'
936           description: 'Enable networking L2gw'
937       - string:
938           name: NETWORKING_L2GW_DRIVER
939           default: '{networking-l2gw-repo}'
940           description: 'URL to fetch networking-l2gw driver'
941       - string:
942           name: CREATE_INITIAL_NETWORKS
943           default: '{create-initial-networks}'
944           description: 'Toggles the option of letting devstack create initial networks (True/False)'
945       - string:
946           name: LBAAS_SERVICE_PROVIDER
947           default: '{lbaas-service-provider}'
948           description: 'The NEUTRON_LBAAS_SERVICE_PROVIDERV2 value to be used in local.conf - only relevant when using
949           neutron-lbaas'
950       - string:
951           name: ODL_SFC_DRIVER
952           default: '{odl-sfc-driver}'
953           description: 'The SFC driver to be used in local.conf - only relevant when using networking-sfc'
954       - string:
955           name: ODL_SNAT_MODE
956           default: '{odl-snat-mode}'
957           description: 'The SNAT mode to be configured - options are conntrack/controller.'
958     scm:
959       - integration-gerrit-scm:
960           basedir: 'test'
961           refspec: '$PATCHREFSPEC'
962           branch: 'master'
963
964     wrappers:
965       - opendaylight-infra-wrappers:
966           build-timeout: '{build-timeout}'
967
968     triggers:
969       - timed: '{schedule}'
970
971     builders:
972       - integration-infra-stack-4-type:
973           stack-template: '{stack-template}'
974           vm_0_count: '{odl_system_count}'
975           vm_0_flavor: '{odl_system_flavor}'
976           vm_0_image: '{odl_system_image}'
977           vm_1_count: '{openstack_system_count}'
978           vm_1_flavor: '{openstack_system_flavor}'
979           vm_1_image: '{openstack_system_image}'
980           vm_2_count: '{openstack_system2_count}'
981           vm_2_flavor: '{openstack_system2_flavor}'
982           vm_2_image: '{openstack_system2_image}'
983           vm_3_count: '{tools_system_count}'
984           vm_3_flavor: '{tools_system_flavor}'
985           vm_3_image: '{tools_system_image}'
986       - integration-install-robotframework
987       - inject:
988           properties-file: 'env.properties'
989       - integration-get-slave-addresses
990       - inject:
991           properties-file: 'slave_addresses.txt'
992       - integration-detect-variables
993       - integration-install-common-functions
994       - integration-deploy-controller-run-test
995       - integration-deploy-openstack-run-test
996       - integration-cleanup-tmp
997
998     publishers:
999       - integration-robot-tempest:
1000           unstable-if: 0.0
1001           pass-if: 100.0
1002       - email-notification:
1003           email-recipients: '{email-recipients}'
1004           email-prefix: '[{project}]'
1005       - integration-csit-archive-build
1006       - integration-csit-run-postscript
1007       - lf-infra-publish
1008
1009 - job-template:
1010     name: '{prefix}{project}-csit-{topology}-openstack-{openstack}-{functionality}-{stream}'
1011     id: inttest-csit-openstack
1012     disabled: false
1013
1014     project-type: freestyle
1015     node: centos7-robot-2c-8g
1016     concurrent: true
1017
1018     properties:
1019       - opendaylight-infra-properties:
1020           build-days-to-keep: '{build-days-to-keep}'
1021
1022     parameters:
1023       - opendaylight-infra-parameters:
1024           os-cloud: '{os-cloud}'
1025           project: 'integration/test'
1026           branch: '{branch}'
1027           refspec: 'refs/heads/{branch}'
1028           artifacts: '{archive-artifacts}'
1029       - integration-distribution-branch:
1030           branch: '{branch}'
1031       - integration-distribution-stream:
1032           stream: '{stream}'
1033       - integration-bundle-url:
1034           bundle-url: '{bundle-url}'
1035       - integration-repo-url:
1036           repo-url: '{repo-url}'
1037       - integration-controller-features:
1038           controller-features: '{install-features}'
1039       - integration-controller-debug-map:
1040           controller-debug-map: '{debug-map}'
1041       - integration-test-options:
1042           test-options: '{robot-options}'
1043       - integration-test-plan:
1044           test-plan: '{testplan}'
1045       - integration-test-suites:
1046           test-suites: '{test-suites}'
1047       - integration-patch-refspec:
1048           branch: 'master'
1049       - integration-jdk-version:
1050           jdkversion: '{jre}'
1051       - distribution-karaf-version:
1052           karaf-version: '{karaf-version}'
1053       - integration-use-features-boot:
1054           use-features-boot: '{use-features-boot}'
1055       - string:
1056           name: OPENSTACK_BRANCH
1057           default: '{openstack-branch}'
1058           description: 'Openstack version to use with devstack'
1059       - string:
1060           name: DEVSTACK_HASH
1061           default: '{devstack-hash}'
1062           description: 'devstack hash to checkout'
1063       - string:
1064           name: ODL_ML2_DRIVER_REPO
1065           default: '{odl-ml2-driver-repo}'
1066           description: 'URL to fetch networking-odl driver'
1067       - string:
1068           name: ODL_ML2_BRANCH
1069           default: '{odl-ml2-branch}'
1070           description: 'Version of networking-odl to checkout from the repo'
1071       - string:
1072           name: ODL_ML2_DRIVER_VERSION
1073           default: '{odl-ml2-driver-version}'
1074           description: 'Mode of networking-odl (v1 or v2)'
1075       - string:
1076           name: ODL_ML2_PORT_BINDING
1077           default: '{odl-ml2-port-binding}'
1078           description: 'Method of networking-odl port-binding (pseudo-agentdb-binding or legacy-port-binding or
1079           network-topology)'
1080       - string:
1081           name: DEVSTACK_KUBERNETES_PLUGIN_REPO
1082           default: '{devstack-kubernetes-plugin-repo}'
1083           description: 'URL to fetch kubernetes devstack plugin'
1084       - string:
1085           name: DEVSTACK_LBAAS_PLUGIN_REPO
1086           default: '{devstack-lbaas-plugin-repo}'
1087           description: 'URL to fetch neutron-lbaas devstack plugin'
1088       - string:
1089           name: DEVSTACK_NETWORKING_SFC_PLUGIN_REPO
1090           default: '{devstack-networking-sfc-plugin-repo}'
1091           description: 'URL to fetch neutron-lbaas devstack plugin'
1092       - string:
1093           name: ODL_ENABLE_L3_FWD
1094           default: '{odl-enable-l3}'
1095           description: 'Enable L3 FWD in ODL for createing br-ex'
1096       - string:
1097           name: IPSEC_VXLAN_TUNNELS_ENABLED
1098           default: '{ipsec-vxlan-tunnels-enabled}'
1099           description: 'Enable ipsec over vxlan support for all controllers and computes'
1100       - string:
1101           name: PUBLIC_BRIDGE
1102           default: '{public-bridge}'
1103           description: 'Specifies public bridge for provider and external networking'
1104       - string:
1105           name: ENABLE_HAPROXY_FOR_NEUTRON
1106           default: '{enable-haproxy}'
1107           description: 'Enable HAProxy for using neutron interface as HA'
1108       - string:
1109           name: ENABLE_OS_SERVICES
1110           default: '{enable-openstack-services}'
1111           description: 'comma seperated list of services to enable'
1112       - string:
1113           name: ENABLE_OS_COMPUTE_SERVICES
1114           default: '{enable-openstack-compute-services}'
1115           description: 'comma separated list of services to enable on compute nodes'
1116       - string:
1117           name: ENABLE_OS_NETWORK_SERVICES
1118           default: '{enable-openstack-network-services}'
1119           description: 'comma seperated list of network services to enable'
1120       - string:
1121           name: ENABLE_OS_PLUGINS
1122           default: '{enable-openstack-plugins}'
1123           description: 'comma seperated list of plugins to enable'
1124       - string:
1125           name: DISABLE_OS_SERVICES
1126           default: '{disable-openstack-services}'
1127           description: 'comma seperated list of services to enable'
1128       - string:
1129           name: TENANT_NETWORK_TYPE
1130           default: '{tenant-network-type}'
1131           description: 'Tenant Network Type supported by the implementation'
1132       - string:
1133           name: SECURITY_GROUP_MODE
1134           default: '{security-group-mode}'
1135           description: 'Security Group Mode to be used in netvirt aclservice config'
1136       - string:
1137           name: PUBLIC_PHYSICAL_NETWORK
1138           default: '{public-physical-network}'
1139           description: 'provider physical network used for flat/vlan networks'
1140       - string:
1141           name: ENABLE_NETWORKING_L2GW
1142           default: '{enable-networking-l2gw}'
1143           description: 'Enable networking L2gw'
1144       - string:
1145           name: NETWORKING_L2GW_DRIVER
1146           default: '{networking-l2gw-repo}'
1147           description: 'URL to fetch networking-l2gw driver'
1148       - string:
1149           name: CREATE_INITIAL_NETWORKS
1150           default: '{create-initial-networks}'
1151           description: 'Toggles the option of letting devstack create initial networks (True/False)'
1152       - string:
1153           name: LBAAS_SERVICE_PROVIDER
1154           default: '{lbaas-service-provider}'
1155           description: 'The NEUTRON_LBAAS_SERVICE_PROVIDERV2 value to be used in local.conf - only relevant when using
1156           neutron-lbaas'
1157       - string:
1158           name: NUM_OPENSTACK_SITES
1159           default: '{num-openstack-sites}'
1160           description: 'Number of openstack sites'
1161       - string:
1162           name: ODL_SFC_DRIVER
1163           default: '{odl-sfc-driver}'
1164           description: 'The SFC driver to be used in local.conf - only relevant when using networking-sfc'
1165       - string:
1166           name: ODL_SNAT_MODE
1167           default: '{odl-snat-mode}'
1168           description: 'The SNAT mode to be configured - options are conntrack/controller.'
1169
1170     scm:
1171       - integration-gerrit-scm:
1172           basedir: 'test'
1173           refspec: '$PATCHREFSPEC'
1174           branch: 'master'
1175
1176     wrappers:
1177       - opendaylight-infra-wrappers:
1178           build-timeout: '{build-timeout}'
1179
1180     triggers:
1181       - timed: '{schedule}'
1182
1183     builders:
1184       - integration-infra-stack-3-type:
1185           stack-template: '{stack-template}'
1186           vm_0_count: '{odl_system_count}'
1187           vm_0_flavor: '{odl_system_flavor}'
1188           vm_0_image: '{odl_system_image}'
1189           vm_1_count: '{openstack_system_count}'
1190           vm_1_flavor: '{openstack_system_flavor}'
1191           vm_1_image: '{openstack_system_image}'
1192           vm_2_count: '{openstack_system2_count}'
1193           vm_2_flavor: '{openstack_system2_flavor}'
1194           vm_2_image: '{openstack_system2_image}'
1195       - integration-install-robotframework
1196       - inject:
1197           properties-file: 'env.properties'
1198       - integration-get-slave-addresses
1199       - inject:
1200           properties-file: 'slave_addresses.txt'
1201       - integration-detect-variables
1202       - integration-install-common-functions
1203       - integration-deploy-controller-run-test
1204       - integration-deploy-openstack-run-test
1205       - integration-cleanup-tmp
1206
1207     publishers:
1208       - integration-robot-tempest:
1209           unstable-if: 0.0
1210           pass-if: 100.0
1211       - email-notification:
1212           email-recipients: '{email-recipients}'
1213           email-prefix: '[{project}]'
1214       - integration-csit-archive-build
1215       - integration-csit-run-postscript
1216       - lf-infra-publish
1217
1218 # Template: {project}-patch-test-{stream}
1219 # Goal: Build a patch and run project specific system test on a distribution containing the change
1220 # Operation: This job template builds a patch, creates a distribution containing the patch, and
1221 # triggers the project system test defined in {csit-list} when gerrit receives test-{project} keyword
1222
1223 - job-template:
1224     name: '{prefix}{project}-patch-test-{feature}-{stream}'
1225     id: inttest-patch-test
1226
1227     project-type: freestyle
1228     node: centos7-builder-2c-8g
1229     concurrent: true
1230     jdk: '{java-version}'
1231
1232     properties:
1233       - opendaylight-infra-properties:
1234           build-days-to-keep: '{build-days-to-keep}'
1235
1236     parameters:
1237       - opendaylight-infra-parameters:
1238           os-cloud: '{os-cloud}'
1239           project: '{project}'
1240           branch: '{branch}'
1241           refspec: 'refs/heads/{branch}'
1242           artifacts: '{archive-artifacts}'
1243       - integration-distribution-branch:
1244           branch: '{branch}'
1245       - distribution-karaf-version:
1246           karaf-version: '{karaf-version}'
1247       - integration-distribution-git-url:
1248           git-url: '{git-url}'
1249       - string:
1250           name: feature
1251           default: 'all'
1252           description: 'Specific feature test for patch'
1253       - maven-exec:
1254           maven-version: mvn35
1255
1256     scm:
1257       - integration-gerrit-scm:
1258           basedir: '{project}'
1259           refspec: '$GERRIT_REFSPEC'
1260           branch: '{branch}'
1261       - integration-distribution-scm:
1262           branch: '{branch}'
1263
1264     wrappers:
1265       - opendaylight-infra-wrappers:
1266           build-timeout: '{build-timeout}'
1267
1268     triggers:
1269       - gerrit:
1270           server-name: '{gerrit-server-name}'
1271           trigger-on:
1272             - comment-added-contains-event:
1273                 comment-contains-value: 'test-{project}-all'
1274             - comment-added-contains-event:
1275                 comment-contains-value: 'test-{project}-{feature}'
1276           projects:
1277             - project-compare-type: 'ANT'
1278               project-pattern: '{project}'
1279               branches:
1280                 - branch-compare-type: 'ANT'
1281                   branch-pattern: '**/{branch}'
1282           skip-vote:
1283             successful: true
1284             failed: true
1285             unstable: true
1286             notbuilt: true
1287
1288     builders:
1289       - integration-rebase-gerrit-patch
1290       - wipe-org-opendaylight-repo
1291       - maven-target:
1292           maven-version: mvn35
1293           pom: '{project}/pom.xml'
1294           goals: |
1295               clean install dependency:tree
1296               -Pq
1297               -Dgitid.skip=false
1298               -Dmaven.gitcommitid.skip=false
1299               -DgenerateReports=false
1300               -Dstream={stream}
1301               {opendaylight-infra-mvn-opts}
1302           # {opendaylight-infra-parallel-mvn-opts} is bad when there are multiple big features in SFT.
1303           java-opts:
1304             - '-Xmx4096m -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
1305           settings: integration-settings
1306           settings-type: cfp
1307           global-settings: global-settings
1308           global-settings-type: cfp
1309       - maven-target:
1310           maven-version: mvn35
1311           pom: distribution/pom.xml
1312           goals: |
1313               clean install dependency:tree
1314               -Pq
1315               -Dgitid.skip=false
1316               -Dmaven.gitcommitid.skip=false
1317               {opendaylight-infra-mvn-opts}
1318           # {opendaylight-infra-parallel-mvn-opts} is bad when there are multiple big features in SFT.
1319           java-opts:
1320             - '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true'
1321           settings: integration-settings
1322           settings-type: cfp
1323           global-settings: global-settings
1324           global-settings-type: cfp
1325       - integration-upload-distribution:
1326           dist-pom: distribution/pom.xml
1327       - trigger-builds:
1328           - project: '{csit-list}'
1329             block: true
1330             predefined-parameters: |
1331               BUNDLE_URL=$BUNDLE_URL
1332               KARAF_VERSION=$KARAF_VERSION
1333
1334     publishers:
1335       - email-notification:
1336           email-recipients: '{email-recipients}'
1337           email-prefix: '[{project}]'