Update Functest Gates according to XtestingCI
[releng.git] / jjb / functest / functest-pi.yaml
1 ---
2 - functest-pi-containers: &functest-pi-containers
3     name: 'functest-pi-containers'
4     repo: '{repo}'
5     port: '{port}'
6     container: '{container}'
7     tag: '{tag}'
8
9 - functest-pi-params: &functest-pi-params
10     name: 'functest-pi-params'
11     repo: 'ollivier'
12     port:
13     tag:
14       - latest:
15           slave: lf-pod4-2
16           DASHBOARD_URL: http://172.30.12.85
17       - wallaby:
18           slave: lf-virtual6
19           DASHBOARD_URL: http://172.30.13.91
20       - leguer:
21           slave: lf-virtual9
22           DASHBOARD_URL: http://172.30.13.94
23       - kali:
24           slave: lf-pod4-3
25           DASHBOARD_URL: http://172.30.12.88
26       - jerma:
27           slave: lf-pod4
28           DASHBOARD_URL: http://172.30.12.83
29       - arm-latest:
30           slave: lf-pod4-2
31           DASHBOARD_URL: http://172.30.12.85
32       - arm-wallaby:
33           slave: lf-virtual6
34           DASHBOARD_URL: http://172.30.13.91
35       - arm-leguer:
36           slave: lf-virtual9
37           DASHBOARD_URL: http://172.30.13.94
38       - arm-kali:
39           slave: lf-pod4-3
40           DASHBOARD_URL: http://172.30.12.88
41       - arm-jerma:
42           slave: lf-pod4
43           DASHBOARD_URL: http://172.30.12.83
44       - arm64-latest:
45           slave: lf-pod4-2
46           DASHBOARD_URL: http://172.30.12.85
47       - arm64-wallaby:
48           slave: lf-virtual6
49           DASHBOARD_URL: http://172.30.13.91
50       - arm64-leguer:
51           slave: lf-virtual9
52           DASHBOARD_URL: http://172.30.13.94
53       - arm64-kali:
54           slave: lf-pod4-3
55           DASHBOARD_URL: http://172.30.12.88
56       - arm64-jerma:
57           slave: lf-pod4
58           DASHBOARD_URL: http://172.30.12.83
59
60 - functest-pi-jobs: &functest-pi-jobs
61     name: 'functest-pi-jobs'
62     current-parameters: true
63
64 - parameter:
65     name: functest-pi-slave
66     parameters:
67       - label:
68           name: slave
69           default: '{slave}'
70
71 - parameter:
72     name: functest-pi-build_tag
73     parameters:
74       - random-string:
75           name: build_tag
76
77 - parameter:
78     name: functest-pi-EXTERNAL_NETWORK
79     parameters:
80       - string:
81           name: EXTERNAL_NETWORK
82           default: public
83
84 - parameter:
85     name: functest-pi-VOLUME_DEVICE_NAME
86     parameters:
87       - string:
88           name: VOLUME_DEVICE_NAME
89           default: sdb
90
91 - parameter:
92     name: functest-pi-IMAGE_PROPERTIES
93     parameters:
94       - string:
95           name: IMAGE_PROPERTIES
96           default: hw_scsi_model:virtio-scsi,hw_disk_bus:scsi
97
98 - functest-pi-run-containers: &functest-pi-run-containers
99     name: 'functest-pi-run-containers'
100     <<: *functest-pi-containers
101     test: '{test}'
102     privileged: '{privileged}'
103     network: '{network}'
104     DASHBOARD_URL: '{DASHBOARD_URL}'
105
106 - builder:
107     name: functest-pi-pull-containers
108     builders:
109       - shell: |
110           set +x
111           if [ "{repo}" = "_" ]; then
112             image={container}:{tag}
113           elif [ "{port}" = "None" ]; then
114             image={repo}/{container}:{tag}
115           else
116             image={repo}:{port}/{container}:{tag}
117           fi
118           sudo docker pull $image
119
120 - builder:
121     name: functest-pi-run-containers
122     builders:
123       - shell: |
124           set +x
125           [ ! -z "$WORKSPACE" ] && sudo rm -rf $WORKSPACE/results || true
126           if [ "{repo}" = "_" ]; then
127             image={container}:{tag}
128           elif [ "{port}" = "None" ]; then
129             image={repo}/{container}:{tag}
130           else
131             image={repo}:{port}/{container}:{tag}
132           fi
133           sudo docker run --rm \
134             --privileged={privileged} \
135             --network={network} \
136             -e S3_ENDPOINT_URL=https://storage.googleapis.com \
137             -e S3_DST_URL=s3://artifacts.opnfv.org/functest/$BUILD_TAG/$JOB_NAME-$BUILD_ID \
138             -e HTTP_DST_URL=http://artifacts.opnfv.org/functest/$BUILD_TAG/$JOB_NAME-$BUILD_ID \
139             -v /home/opnfv/functest/.boto:/root/.boto \
140             -e TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results \
141             -e TEST_DB_EXT_URL=http://testresults.opnfv.org/test/api/v1/results \
142             -e NODE_NAME=$slave \
143             -e BUILD_TAG=$BUILD_TAG \
144             -v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
145             -e EXTERNAL_NETWORK=$EXTERNAL_NETWORK \
146             -e VOLUME_DEVICE_NAME=$VOLUME_DEVICE_NAME \
147             -e IMAGE_PROPERTIES=$IMAGE_PROPERTIES \
148             -e DASHBOARD_URL={DASHBOARD_URL} \
149             -v /home/opnfv/functest/openstack.creds:/home/opnfv/functest/conf/env_file \
150             -v /home/opnfv/functest/images:/home/opnfv/functest/images \
151             $image run_tests -t {test} -p -r
152
153 - builder:
154     name: functest-pi-remove-images
155     builders:
156       - shell: |
157           set +x
158           if [ "{repo}" = "_" ]; then
159             image={container}:{tag}
160           elif [ "{port}" = "None" ]; then
161             image={repo}/{container}:{tag}
162           else
163             image={repo}:{port}/{container}:{tag}
164           fi
165           sudo docker rmi $image || true
166
167 - job-template:
168     name: 'functest-pi-{repo}-{container}-{tag}-pull'
169     parameters:
170       - functest-pi-slave:
171           slave: '{slave}'
172     builders:
173       - functest-pi-pull-containers:
174           <<: *functest-pi-containers
175
176 - project:
177     name: 'functest-pi-ollivier-functest-healthcheck-pull'
178     <<: *functest-pi-params
179     container: 'functest-healthcheck'
180     jobs:
181       - 'functest-pi-{repo}-{container}-{tag}-pull'
182
183 - project:
184     name: 'functest-pi-ollivier-functest-smoke-pull'
185     <<: *functest-pi-params
186     container: 'functest-smoke'
187     jobs:
188       - 'functest-pi-{repo}-{container}-{tag}-pull'
189
190 - project:
191     name: 'functest-pi-ollivier-functest-smoke-cntt-pull'
192     <<: *functest-pi-params
193     container: 'functest-smoke-cntt'
194     jobs:
195       - 'functest-pi-{repo}-{container}-{tag}-pull'
196
197 - project:
198     name: 'functest-pi-ollivier-functest-benchmarking-pull'
199     <<: *functest-pi-params
200     container: 'functest-benchmarking'
201     jobs:
202       - 'functest-pi-{repo}-{container}-{tag}-pull'
203
204 - project:
205     name: 'functest-pi-ollivier-functest-benchmarking-cntt-pull'
206     <<: *functest-pi-params
207     container: 'functest-benchmarking-cntt'
208     jobs:
209       - 'functest-pi-{repo}-{container}-{tag}-pull'
210
211 - project:
212     name: 'functest-pi-ollivier-functest-vnf-pull'
213     <<: *functest-pi-params
214     container: 'functest-vnf'
215     jobs:
216       - 'functest-pi-{repo}-{container}-{tag}-pull'
217
218 - job-template:
219     name: 'functest-pi-{repo}-{container}-{tag}-rmi'
220     parameters:
221       - functest-pi-slave:
222           slave: '{slave}'
223     builders:
224       - functest-pi-remove-images:
225           <<: *functest-pi-containers
226
227 - project:
228     name: 'functest-pi-ollivier-functest-healthcheck-rmi'
229     <<: *functest-pi-params
230     container: 'functest-healthcheck'
231     jobs:
232       - 'functest-pi-{repo}-{container}-{tag}-rmi'
233
234 - project:
235     name: 'functest-pi-ollivier-functest-smoke-rmi'
236     <<: *functest-pi-params
237     container: 'functest-smoke'
238     jobs:
239       - 'functest-pi-{repo}-{container}-{tag}-rmi'
240
241 - project:
242     name: 'functest-pi-ollivier-functest-smoke-cntt-rmi'
243     <<: *functest-pi-params
244     container: 'functest-smoke-cntt'
245     jobs:
246       - 'functest-pi-{repo}-{container}-{tag}-rmi'
247
248 - project:
249     name: 'functest-pi-ollivier-functest-benchmarking-rmi'
250     <<: *functest-pi-params
251     container: 'functest-benchmarking'
252     jobs:
253       - 'functest-pi-{repo}-{container}-{tag}-rmi'
254
255 - project:
256     name: 'functest-pi-ollivier-functest-benchmarking-cntt-rmi'
257     <<: *functest-pi-params
258     container: 'functest-benchmarking-cntt'
259     jobs:
260       - 'functest-pi-{repo}-{container}-{tag}-rmi'
261
262 - project:
263     name: 'functest-pi-ollivier-functest-vnf-rmi'
264     <<: *functest-pi-params
265     container: 'functest-vnf'
266     jobs:
267       - 'functest-pi-{repo}-{container}-{tag}-rmi'
268
269 - job-template:
270     name: 'functest-pi-{repo}-{container}-{tag}-{test}-run'
271     parameters:
272       - functest-pi-slave:
273           slave: '{slave}'
274       - functest-pi-build_tag:
275           build_tag: ''
276       - functest-pi-EXTERNAL_NETWORK:
277           EXTERNAL_NETWORK: public
278       - functest-pi-VOLUME_DEVICE_NAME:
279           VOLUME_DEVICE_NAME: sdb
280       - functest-pi-IMAGE_PROPERTIES:
281           IMAGE_PROPERTIES: hw_scsi_model:virtio-scsi,hw_disk_bus:scsi
282     builders:
283       - functest-pi-run-containers:
284           <<: *functest-pi-run-containers
285
286 - project:
287     name: 'functest-pi-ollivier-functest-healthcheck'
288     <<: *functest-pi-params
289     container: 'functest-healthcheck'
290     test:
291       - connection_check
292       - tenantnetwork1
293       - tenantnetwork2
294       - vmready1
295       - vmready2
296       - singlevm1
297       - singlevm2
298       - vping_ssh
299       - vping_userdata
300       - cinder_test
301       - odl
302       - tempest_smoke
303       - tempest_horizon
304     privileged: 'false'
305     network: bridge
306     jobs:
307       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
308
309 - project:
310     name: 'functest-pi-ollivier-functest-smoke'
311     <<: *functest-pi-params
312     container: 'functest-smoke'
313     test:
314       - tempest_neutron
315       - tempest_cinder
316       - tempest_keystone
317       - tempest_heat
318       - tempest_telemetry
319       - rally_sanity
320       - refstack_defcore
321       - refstack_compute
322       - refstack_object
323       - refstack_platform
324       - tempest_full
325       - tempest_scenario
326       - tempest_slow
327       - patrole
328       - patrole_admin
329       - patrole_member
330       - patrole_reader
331       - networking-bgpvpn
332       - networking-sfc
333       - tempest_barbican
334       - tempest_octavia
335       - tempest_cyborg
336     privileged: 'false'
337     network: bridge
338     exclude:
339       - tag: latest
340         test: refstack_defcore
341       - tag: latest
342         test: networking-bgpvpn
343       - tag: latest
344         test: networking-sfc
345       - tag: latest
346         test: patrole
347       - tag: wallaby
348         test: refstack_defcore
349       - tag: wallaby
350         test: networking-bgpvpn
351       - tag: wallaby
352         test: networking-sfc
353       - tag: wallaby
354         test: patrole
355       - tag: leguer
356         test: refstack_defcore
357       - tag: leguer
358         test: networking-bgpvpn
359       - tag: leguer
360         test: networking-sfc
361       - tag: leguer
362         test: patrole
363       - tag: kali
364         test: refstack_defcore
365       - tag: kali
366         test: networking-bgpvpn
367       - tag: kali
368         test: networking-sfc
369       - tag: kali
370         test: patrole_admin
371       - tag: kali
372         test: patrole_member
373       - tag: kali
374         test: patrole_reader
375       - tag: jerma
376         test: refstack_defcore
377       - tag: jerma
378         test: networking-bgpvpn
379       - tag: jerma
380         test: networking-sfc
381       - tag: jerma
382         test: patrole_admin
383       - tag: jerma
384         test: patrole_member
385       - tag: jerma
386         test: patrole_reader
387       - tag: jerma
388         test: tempest_cyborg
389       - tag: arm-latest
390         test: refstack_defcore
391       - tag: arm-latest
392         test: networking-bgpvpn
393       - tag: arm-latest
394         test: networking-sfc
395       - tag: arm-latest
396         test: patrole
397       - tag: arm-wallaby
398         test: refstack_defcore
399       - tag: arm-wallaby
400         test: networking-bgpvpn
401       - tag: arm-wallaby
402         test: networking-sfc
403       - tag: arm-wallaby
404         test: patrole
405       - tag: arm-leguer
406         test: refstack_defcore
407       - tag: arm-leguer
408         test: networking-bgpvpn
409       - tag: arm-leguer
410         test: networking-sfc
411       - tag: arm-leguer
412         test: patrole
413       - tag: arm-kali
414         test: refstack_defcore
415       - tag: arm-kali
416         test: networking-bgpvpn
417       - tag: arm-kali
418         test: networking-sfc
419       - tag: arm-kali
420         test: patrole_admin
421       - tag: arm-kali
422         test: patrole_member
423       - tag: arm-kali
424         test: patrole_reader
425       - tag: arm-jerma
426         test: refstack_defcore
427       - tag: arm-jerma
428         test: networking-bgpvpn
429       - tag: arm-jerma
430         test: networking-sfc
431       - tag: arm-jerma
432         test: patrole_admin
433       - tag: arm-jerma
434         test: patrole_member
435       - tag: arm-jerma
436         test: patrole_reader
437       - tag: arm-jerma
438         test: tempest_cyborg
439       - tag: arm64-latest
440         test: refstack_defcore
441       - tag: arm64-latest
442         test: networking-bgpvpn
443       - tag: arm64-latest
444         test: networking-sfc
445       - tag: arm64-latest
446         test: patrole
447       - tag: arm64-wallaby
448         test: refstack_defcore
449       - tag: arm64-wallaby
450         test: networking-bgpvpn
451       - tag: arm64-wallaby
452         test: networking-sfc
453       - tag: arm64-wallaby
454         test: patrole
455       - tag: arm64-leguer
456         test: refstack_defcore
457       - tag: arm64-leguer
458         test: networking-bgpvpn
459       - tag: arm64-leguer
460         test: networking-sfc
461       - tag: arm64-leguer
462         test: patrole
463       - tag: arm64-kali
464         test: refstack_defcore
465       - tag: arm64-kali
466         test: networking-bgpvpn
467       - tag: arm64-kali
468         test: networking-sfc
469       - tag: arm64-kali
470         test: patrole_admin
471       - tag: arm64-kali
472         test: patrole_member
473       - tag: arm64-kali
474         test: patrole_reader
475       - tag: arm64-jerma
476         test: refstack_defcore
477       - tag: arm64-jerma
478         test: networking-bgpvpn
479       - tag: arm64-jerma
480         test: networking-sfc
481       - tag: arm64-jerma
482         test: patrole_admin
483       - tag: arm64-jerma
484         test: patrole_member
485       - tag: arm64-jerma
486         test: patrole_reader
487       - tag: arm64-jerma
488         test: tempest_cyborg
489     jobs:
490       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
491
492 - project:
493     name: 'functest-pi-ollivier-functest-smoke-cntt'
494     <<: *functest-pi-params
495     container: 'functest-smoke-cntt'
496     test:
497       - tempest_neutron_cntt
498       - tempest_cinder_cntt
499       - tempest_keystone_cntt
500       - tempest_heat_cntt
501       - rally_sanity_cntt
502       - tempest_full_cntt
503       - tempest_scenario_cntt
504       - tempest_slow_cntt
505     privileged: 'false'
506     network: bridge
507     jobs:
508       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
509
510 - project:
511     name: 'functest-pi-ollivier-functest-benchmarking'
512     <<: *functest-pi-params
513     container: 'functest-benchmarking'
514     test:
515       - rally_full
516       - rally_jobs
517       - vmtp
518       - shaker
519     privileged: 'false'
520     network: bridge
521     jobs:
522       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
523
524 - project:
525     name: 'functest-pi-ollivier-functest-benchmarking-cntt'
526     <<: *functest-pi-params
527     container: 'functest-benchmarking-cntt'
528     test:
529       - rally_full_cntt
530       - rally_jobs_cntt
531     privileged: 'false'
532     network: bridge
533     jobs:
534       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
535
536 - project:
537     name: 'functest-pi-ollivier-functest-vnf'
538     <<: *functest-pi-params
539     container: 'functest-vnf'
540     test:
541       - cloudify
542       - cloudify_ims
543       - heat_ims
544       - vyos_vrouter
545       - juju_epc
546     privileged: 'false'
547     network: bridge
548     jobs:
549       - 'functest-pi-{repo}-{container}-{tag}-{test}-run'
550
551
552 - builder:
553     name: functest-pi-zip
554     builders:
555       - shell: |
556           set +x
557           [ ! -z "$WORKSPACE" ] && sudo rm -rf $WORKSPACE/results || true
558           if [ "{repo}" = "_" ]; then
559             image={container}:{tag}
560           elif [ "{port}" = "None" ]; then
561             image={repo}/{container}:{tag}
562           else
563             image={repo}:{port}/{container}:{tag}
564           fi
565           sudo docker run --rm \
566             -e S3_ENDPOINT_URL=https://storage.googleapis.com \
567             -e S3_DST_URL=s3://artifacts.opnfv.org/functest \
568             -e HTTP_DST_URL=http://artifacts.opnfv.org/functest \
569             -v /home/opnfv/functest/.boto:/root/.boto \
570             -e TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results \
571             -e TEST_DB_EXT_URL=http://testresults.opnfv.org/test/api/v1/results \
572             -e BUILD_TAG=$BUILD_TAG \
573             -v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
574             -e EXTERNAL_NETWORK=$EXTERNAL_NETWORK \
575             -e VOLUME_DEVICE_NAME=$VOLUME_DEVICE_NAME \
576             -e IMAGE_PROPERTIES=$IMAGE_PROPERTIES \
577             -v /home/opnfv/functest/openstack.creds:/home/opnfv/functest/conf/env_file \
578             -v /home/opnfv/functest/images:/home/opnfv/functest/images \
579             $image zip_campaign
580
581 - job-template:
582     name: 'functest-pi-{tag}-zip'
583     parameters:
584       - functest-pi-slave:
585           slave: '{slave}'
586       - functest-pi-build_tag:
587           build_tag: ''
588       - functest-pi-EXTERNAL_NETWORK:
589           EXTERNAL_NETWORK: public
590       - functest-pi-VOLUME_DEVICE_NAME:
591           VOLUME_DEVICE_NAME: sdb
592       - functest-pi-IMAGE_PROPERTIES:
593           IMAGE_PROPERTIES: hw_scsi_model:virtio-scsi,hw_disk_bus:scsi
594     builders:
595       - functest-pi-zip:
596           <<: *functest-pi-containers
597
598 - project:
599     name: 'functest-pi-{tag}-zip'
600     <<: *functest-pi-params
601     container: 'functest-healthcheck'
602     jobs:
603       - 'functest-pi-{tag}-zip'
604
605 - job-template:
606     name: 'functest-pi-{tag}-daily'
607     project-type: multijob
608     triggers:
609       - timed: '@weekly'
610     parameters:
611       - functest-pi-slave:
612           slave: '{slave}'
613       - functest-pi-build_tag:
614           build_tag: ''
615       - functest-pi-EXTERNAL_NETWORK:
616           EXTERNAL_NETWORK: public
617       - functest-pi-VOLUME_DEVICE_NAME:
618           VOLUME_DEVICE_NAME: sdb
619       - functest-pi-IMAGE_PROPERTIES:
620           IMAGE_PROPERTIES: hw_scsi_model:virtio-scsi,hw_disk_bus:scsi
621     # PyYAML and yamllint differ here
622     # see https://github.com/yaml/pyyaml/issues/234
623     # yamllint disable rule:indentation
624     properties:
625       - build-blocker:
626           blocking-jobs:
627           - ^functest-(pi-)*{tag}-(daily|docker|review)$
628     # yamllint enable rule:indentation
629     builders:
630       - multijob:
631           name: remove former images
632           projects:
633             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-rmi'
634               <<: *functest-pi-jobs
635             - name: 'functest-pi-ollivier-functest-smoke-{tag}-rmi'
636               <<: *functest-pi-jobs
637             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-rmi'
638               <<: *functest-pi-jobs
639             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-rmi'
640               <<: *functest-pi-jobs
641             - name: 'functest-pi-ollivier-functest-benchmarking-cntt-{tag}-rmi'
642               <<: *functest-pi-jobs
643             - name: 'functest-pi-ollivier-functest-vnf-{tag}-rmi'
644               <<: *functest-pi-jobs
645       - multijob:
646           name: pull containers
647           projects:
648             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-pull'
649               <<: *functest-pi-jobs
650             - name: 'functest-pi-ollivier-functest-smoke-{tag}-pull'
651               <<: *functest-pi-jobs
652             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-pull'
653               <<: *functest-pi-jobs
654             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-pull'
655               <<: *functest-pi-jobs
656             - name: 'functest-pi-ollivier-functest-benchmarking-cntt-{tag}-pull'
657               <<: *functest-pi-jobs
658             - name: 'functest-pi-ollivier-functest-vnf-{tag}-pull'
659               <<: *functest-pi-jobs
660       - multijob:
661           name: ollivier/functest-healthcheck:{tag}
662           projects:
663             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-connection_check-run'
664               <<: *functest-pi-jobs
665             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-tenantnetwork1-run'
666               <<: *functest-pi-jobs
667             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-tenantnetwork2-run'
668               <<: *functest-pi-jobs
669             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-vmready1-run'
670               <<: *functest-pi-jobs
671             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-vmready2-run'
672               <<: *functest-pi-jobs
673             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-singlevm1-run'
674               <<: *functest-pi-jobs
675             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-singlevm2-run'
676               <<: *functest-pi-jobs
677             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-vping_ssh-run'
678               <<: *functest-pi-jobs
679             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-vping_userdata-run'
680               <<: *functest-pi-jobs
681             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-cinder_test-run'
682               <<: *functest-pi-jobs
683             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-odl-run'
684               <<: *functest-pi-jobs
685             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-tempest_smoke-run'
686               <<: *functest-pi-jobs
687             - name: 'functest-pi-ollivier-functest-healthcheck-{tag}-tempest_horizon-run'
688               <<: *functest-pi-jobs
689       - multijob:
690           name: ollivier/functest-smoke:{tag}
691           projects:
692             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_neutron-run'
693               <<: *functest-pi-jobs
694             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_cinder-run'
695               <<: *functest-pi-jobs
696             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_keystone-run'
697               <<: *functest-pi-jobs
698             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_heat-run'
699               <<: *functest-pi-jobs
700             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_telemetry-run'
701               <<: *functest-pi-jobs
702             - name: 'functest-pi-ollivier-functest-smoke-{tag}-rally_sanity-run'
703               <<: *functest-pi-jobs
704             - name: 'functest-pi-ollivier-functest-smoke-{tag}-refstack_defcore-run'
705               <<: *functest-pi-jobs
706             - name: 'functest-pi-ollivier-functest-smoke-{tag}-refstack_compute-run'
707               <<: *functest-pi-jobs
708             - name: 'functest-pi-ollivier-functest-smoke-{tag}-refstack_object-run'
709               <<: *functest-pi-jobs
710             - name: 'functest-pi-ollivier-functest-smoke-{tag}-refstack_platform-run'
711               <<: *functest-pi-jobs
712             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_full-run'
713               <<: *functest-pi-jobs
714             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_scenario-run'
715               <<: *functest-pi-jobs
716             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_slow-run'
717               <<: *functest-pi-jobs
718             - name: 'functest-pi-ollivier-functest-smoke-{tag}-patrole-run'
719               <<: *functest-pi-jobs
720             - name: 'functest-pi-ollivier-functest-smoke-{tag}-patrole_admin-run'
721               <<: *functest-pi-jobs
722             - name: 'functest-pi-ollivier-functest-smoke-{tag}-patrole_member-run'
723               <<: *functest-pi-jobs
724             - name: 'functest-pi-ollivier-functest-smoke-{tag}-patrole_reader-run'
725               <<: *functest-pi-jobs
726             - name: 'functest-pi-ollivier-functest-smoke-{tag}-networking-bgpvpn-run'
727               <<: *functest-pi-jobs
728             - name: 'functest-pi-ollivier-functest-smoke-{tag}-networking-sfc-run'
729               <<: *functest-pi-jobs
730             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_barbican-run'
731               <<: *functest-pi-jobs
732             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_octavia-run'
733               <<: *functest-pi-jobs
734             - name: 'functest-pi-ollivier-functest-smoke-{tag}-tempest_cyborg-run'
735               <<: *functest-pi-jobs
736       - multijob:
737           name: ollivier/functest-smoke-cntt:{tag}
738           projects:
739             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_neutron_cntt-run'
740               <<: *functest-pi-jobs
741             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_cinder_cntt-run'
742               <<: *functest-pi-jobs
743             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_keystone_cntt-run'
744               <<: *functest-pi-jobs
745             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_heat_cntt-run'
746               <<: *functest-pi-jobs
747             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-rally_sanity_cntt-run'
748               <<: *functest-pi-jobs
749             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_full_cntt-run'
750               <<: *functest-pi-jobs
751             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_scenario_cntt-run'
752               <<: *functest-pi-jobs
753             - name: 'functest-pi-ollivier-functest-smoke-cntt-{tag}-tempest_slow_cntt-run'
754               <<: *functest-pi-jobs
755       - multijob:
756           name: ollivier/functest-benchmarking:{tag}
757           projects:
758             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-rally_full-run'
759               <<: *functest-pi-jobs
760             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-rally_jobs-run'
761               <<: *functest-pi-jobs
762             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-vmtp-run'
763               <<: *functest-pi-jobs
764             - name: 'functest-pi-ollivier-functest-benchmarking-{tag}-shaker-run'
765               <<: *functest-pi-jobs
766       - multijob:
767           name: ollivier/functest-benchmarking-cntt:{tag}
768           projects:
769             - name: 'functest-pi-ollivier-functest-benchmarking-cntt-{tag}-rally_full_cntt-run'
770               <<: *functest-pi-jobs
771             - name: 'functest-pi-ollivier-functest-benchmarking-cntt-{tag}-rally_jobs_cntt-run'
772               <<: *functest-pi-jobs
773       - multijob:
774           name: ollivier/functest-vnf:{tag}
775           projects:
776             - name: 'functest-pi-ollivier-functest-vnf-{tag}-cloudify-run'
777               <<: *functest-pi-jobs
778             - name: 'functest-pi-ollivier-functest-vnf-{tag}-cloudify_ims-run'
779               <<: *functest-pi-jobs
780             - name: 'functest-pi-ollivier-functest-vnf-{tag}-heat_ims-run'
781               <<: *functest-pi-jobs
782             - name: 'functest-pi-ollivier-functest-vnf-{tag}-vyos_vrouter-run'
783               <<: *functest-pi-jobs
784             - name: 'functest-pi-ollivier-functest-vnf-{tag}-juju_epc-run'
785               <<: *functest-pi-jobs
786       - multijob:
787           name: dump all campaign data
788           projects:
789             - name: 'functest-pi-{tag}-zip'
790               <<: *functest-pi-jobs
791
792 - project:
793     name: 'functest-pi-daily'
794     <<: *functest-pi-params
795     jobs:
796       - 'functest-pi-{tag}-daily'
797
798 - view:
799     name: functest-pi
800     view-type: list
801     columns:
802       - status
803       - weather
804       - job
805       - last-success
806       - last-failure
807       - last-duration
808     regex: ^functest-pi-[a-z-0-9.]+-daily$