Add missing sudo calls
[releng.git] / jjb / airship / cntt.yaml
1 ---
2 - cntt-jobs: &cntt-jobs
3     name: 'cntt-jobs'
4     current-parameters: true
5
6 - cntt-params: &cntt-params
7     name: 'cntt-params'
8     repo: 'opnfv'
9     port:
10     tag:
11       - latest:
12           branch: master
13           slave: intel-pod10
14           functest_tag: hunter
15
16 - parameter:
17     name: cntt-slave
18     parameters:
19       - label:
20           name: slave
21           default: '{slave}'
22
23 - parameter:
24     name: cntt-build_tag
25     parameters:
26       - random-string:
27           name: build_tag
28
29 - parameter:
30     name: cntt-DEBUG
31     parameters:
32       - string:
33           name: DEBUG
34           default: 'true'
35
36 - parameter:
37     name: cntt-EXTERNAL_NETWORK
38     parameters:
39       - string:
40           name: EXTERNAL_NETWORK
41           default: public
42
43 - cntt-containers: &cntt-containers
44     name: 'cntt-containers'
45     repo: '{repo}'
46     port: '{port}'
47     container: '{container}'
48     functest_tag: '{functest_tag}'
49
50 - cntt-run-containers: &cntt-run-containers
51     name: 'cntt-run-containers'
52     <<: *cntt-containers
53     test: '{test}'
54
55 - builder:
56     name: cntt-pull-containers
57     builders:
58       - shell: |
59           set +x
60           if [ "{repo}" = "_" ]; then
61             image={container}:{functest_tag}
62           elif [ "{port}" = "None" ]; then
63             image={repo}/{container}:{functest_tag}
64           else
65             image={repo}:{port}/{container}:{functest_tag}
66           fi
67           sudo docker pull $image
68
69 - builder:
70     name: cntt-run-containers
71     builders:
72       - shell: |
73           set +x
74           [ ! -z "$WORKSPACE" ] && sudo rm -rf $WORKSPACE/* || true
75           if [ "{repo}" = "_" ]; then
76             image={container}:{functest_tag}
77           elif [ "{port}" = "None" ]; then
78             image={repo}/{container}:{functest_tag}
79           else
80             image={repo}:{port}/{container}:{functest_tag}
81           fi
82           sudo docker run --rm \
83             -e S3_ENDPOINT_URL=https://storage.googleapis.com \
84             -e S3_DST_URL=s3://artifacts.opnfv.org/cntt/$BUILD_TAG/$JOB_NAME-$BUILD_ID \
85             -e HTTP_DST_URL=http://artifacts.opnfv.org/cntt/$BUILD_TAG/$JOB_NAME-$BUILD_ID \
86             -e TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results \
87             -e TEST_DB_EXT_URL=http://testresults.opnfv.org/test/api/v1/results \
88             -e NODE_NAME=$slave \
89             -e INSTALLER_TYPE=cntt \
90             -e BUILD_TAG=$BUILD_TAG \
91             -v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
92             -v /home/opnfv/functest/.boto:/root/.boto \
93             -e DEBUG=$DEBUG \
94             -e EXTERNAL_NETWORK=$EXTERNAL_NETWORK \
95             -e DEPLOY_SCENARIO=os-nosdn-nofeature-ha \
96             -v /home/opnfv/functest/openstack.creds:/home/opnfv/functest/conf/env_file \
97             -v /home/opnfv/functest/images:/home/opnfv/functest/images \
98             -v /home/opnfv/functest/tempest_conf.yaml:/usr/lib/python2.7/\
99           site-packages/functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml \
100             $image run_tests -t {test} -r -p
101
102 - builder:
103     name: cntt-remove-images
104     builders:
105       - shell: |
106           set +x
107           if [ "{repo}" = "_" ]; then
108             image={container}:{functest_tag}
109           elif [ "{port}" = "None" ]; then
110             image={repo}/{container}:{functest_tag}
111           else
112             image={repo}:{port}/{container}:{functest_tag}
113           fi
114           sudo docker rmi $image || true
115
116 - builder:
117     name: cntt-deploy
118     builders:
119       - shell: |
120           set +x
121           export TERM_OPTS=" "
122           sudo -H -E -u opnfv bash -c 'tools/deploy.sh $slave deploy_site'
123
124 - scm:
125     name: cntt-scm
126     scm:
127       - git:
128           url: https://gerrit.opnfv.org/gerrit/airship
129           refspec: '+refs/changes/*:refs/changes/*'
130           branches:
131             - '{ref}'
132
133 - parameter:
134     name: cntt-branch
135     parameters:
136       - string:
137           name: branch
138           default: '{branch}'
139
140 - job-template:
141     name: 'cntt-deploy-daily-{tag}'
142     parameters:
143       - cntt-slave:
144           slave: '{slave}'
145       - cntt-branch:
146           branch: '{branch}'
147     scm:
148       - cntt-scm:
149           ref: $branch
150     builders:
151       - cntt-deploy
152
153 - job-template:
154     name: 'cntt-deploy-gate-{tag}'
155     parameters:
156       - cntt-slave:
157           slave: '{slave}'
158     scm:
159       - cntt-scm:
160           ref: $GERRIT_REFSPEC
161     builders:
162       - cntt-deploy
163
164 - project:
165     name: 'cntt-deploy'
166     <<: *cntt-params
167     jobs:
168       - 'cntt-deploy-daily-{tag}'
169       - 'cntt-deploy-gate-{tag}'
170
171 - job-template:
172     name: 'cntt-{repo}-{container}-{tag}-pull'
173     parameters:
174       - cntt-slave:
175           slave: '{slave}'
176     builders:
177       - cntt-pull-containers:
178           <<: *cntt-containers
179
180 - project:
181     name: 'cntt-opnfv-functest-healthcheck-pull'
182     <<: *cntt-params
183     container: 'functest-healthcheck'
184     jobs:
185       - 'cntt-{repo}-{container}-{tag}-pull'
186
187 - project:
188     name: 'cntt-opnfv-functest-smoke-pull'
189     <<: *cntt-params
190     container: 'functest-smoke'
191     jobs:
192       - 'cntt-{repo}-{container}-{tag}-pull'
193
194 - project:
195     name: 'cntt-opnfv-functest-smoke-cntt-pull'
196     <<: *cntt-params
197     container: 'functest-smoke-cntt'
198     jobs:
199       - 'cntt-{repo}-{container}-{tag}-pull'
200
201 - project:
202     name: 'cntt-opnfv-functest-benchmarking-pull'
203     <<: *cntt-params
204     container: 'functest-benchmarking'
205     jobs:
206       - 'cntt-{repo}-{container}-{tag}-pull'
207
208 - project:
209     name: 'cntt-opnfv-functest-vnf-pull'
210     <<: *cntt-params
211     container: 'functest-vnf'
212     jobs:
213       - 'cntt-{repo}-{container}-{tag}-pull'
214
215 - job-template:
216     name: 'cntt-{repo}-{container}-{tag}-rmi'
217     parameters:
218       - cntt-slave:
219           slave: '{slave}'
220     builders:
221       - cntt-remove-images:
222           <<: *cntt-containers
223
224 - project:
225     name: 'cntt-opnfv-functest-healthcheck-rmi'
226     <<: *cntt-params
227     container: 'functest-healthcheck'
228     jobs:
229       - 'cntt-{repo}-{container}-{tag}-rmi'
230
231 - project:
232     name: 'cntt-opnfv-functest-smoke-rmi'
233     <<: *cntt-params
234     container: 'functest-smoke'
235     jobs:
236       - 'cntt-{repo}-{container}-{tag}-rmi'
237
238 - project:
239     name: 'cntt-opnfv-functest-smoke-cntt-rmi'
240     <<: *cntt-params
241     container: 'functest-smoke-cntt'
242     jobs:
243       - 'cntt-{repo}-{container}-{tag}-rmi'
244
245 - project:
246     name: 'cntt-opnfv-functest-benchmarking-rmi'
247     <<: *cntt-params
248     container: 'functest-benchmarking'
249     jobs:
250       - 'cntt-{repo}-{container}-{tag}-rmi'
251
252 - project:
253     name: 'cntt-opnfv-functest-vnf-rmi'
254     <<: *cntt-params
255     container: 'functest-vnf'
256     jobs:
257       - 'cntt-{repo}-{container}-{tag}-rmi'
258
259 - job-template:
260     name: 'cntt-{repo}-{container}-{tag}-{test}-run'
261     parameters:
262       - cntt-slave:
263           slave: '{slave}'
264       - cntt-build_tag:
265           build_tag: ''
266       - cntt-DEBUG:
267           DEBUG: 'true'
268       - cntt-EXTERNAL_NETWORK:
269           EXTERNAL_NETWORK: public
270     builders:
271       - cntt-run-containers:
272           <<: *cntt-run-containers
273
274 - project:
275     name: 'cntt-opnfv-functest-healthcheck'
276     <<: *cntt-params
277     container: 'functest-healthcheck'
278     test:
279       - connection_check
280       - tenantnetwork1
281       - tenantnetwork2
282       - vmready1
283       - vmready2
284       - singlevm1
285       - singlevm2
286       - vping_ssh
287       - vping_userdata
288       - cinder_test
289       - odl
290       - tempest_smoke
291     jobs:
292       - 'cntt-{repo}-{container}-{tag}-{test}-run'
293
294 - project:
295     name: 'cntt-opnfv-functest-smoke'
296     <<: *cntt-params
297     container: 'functest-smoke'
298     test:
299       - neutron-tempest-plugin-api
300       - tempest_cinder
301       - tempest_keystone
302       - rally_sanity
303       - refstack_defcore
304       - tempest_full
305       - tempest_scenario
306       - tempest_slow
307       - patrole
308       - neutron_trunk
309       - networking-bgpvpn
310       - networking-sfc
311       - barbican
312     jobs:
313       - 'cntt-{repo}-{container}-{tag}-{test}-run'
314
315 - project:
316     name: 'cntt-opnfv-functest-smoke-cntt'
317     <<: *cntt-params
318     container: 'functest-smoke-cntt'
319     test:
320       - neutron-tempest-plugin-api
321       - tempest_cinder
322       - tempest_keystone
323       - rally_sanity
324       - tempest_full
325       - tempest_scenario
326       - tempest_slow
327     jobs:
328       - 'cntt-{repo}-{container}-{tag}-{test}-run'
329
330 - project:
331     name: 'cntt-opnfv-functest-benchmarking'
332     <<: *cntt-params
333     container: 'functest-benchmarking'
334     test:
335       - rally_full
336       - rally_jobs
337       - vmtp
338       - shaker
339     jobs:
340       - 'cntt-{repo}-{container}-{tag}-{test}-run'
341
342 - project:
343     name: 'cntt-opnfv-functest-vnf'
344     <<: *cntt-params
345     container: 'functest-vnf'
346     test:
347       - cloudify
348       - cloudify_ims
349       - heat_ims
350       - vyos_vrouter
351       - juju_epc
352     jobs:
353       - 'cntt-{repo}-{container}-{tag}-{test}-run'
354
355 - builder:
356     name: cntt-zip
357     builders:
358       - shell: |
359           set +x
360           [ ! -z "$WORKSPACE" ] && rm -rf $WORKSPACE/* || true
361           if [ "{repo}" = "_" ]; then
362             image={container}:{functest_tag}
363           elif [ "{port}" = "None" ]; then
364             image={repo}/{container}:{functest_tag}
365           else
366             image={repo}:{port}/{container}:{functest_tag}
367           fi
368           sudo docker run --rm \
369             -e S3_ENDPOINT_URL=https://storage.googleapis.com \
370             -e S3_DST_URL=s3://artifacts.opnfv.org/airship \
371             -e HTTP_DST_URL=http://artifacts.opnfv.org/airship/ \
372             -e TEST_DB_URL=http://testresults.opnfv.org/test/api/v1/results \
373             -e TEST_DB_EXT_URL=http://testresults.opnfv.org/test/api/v1/results \
374             -e BUILD_TAG=$BUILD_TAG \
375             -v $WORKSPACE/../$JOB_NAME/results:/var/lib/xtesting/results \
376             $image zip_campaign
377
378 - job-template:
379     name: 'cntt-{tag}-zip'
380     parameters:
381       - cntt-build_tag:
382           build_tag: ''
383     builders:
384       - cntt-zip:
385           <<: *cntt-containers
386
387 - project:
388     name: 'cntt-{tag}-zip'
389     <<: *cntt-params
390     container: 'functest-healthcheck'
391     jobs:
392       - 'cntt-{tag}-zip'
393
394 - job-template:
395     name: 'cntt-{tag}-daily'
396     project-type: multijob
397     triggers:
398       - timed: '@daily'
399     parameters:
400       - cntt-slave:
401           slave: '{slave}'
402       - cntt-build_tag:
403           build_tag: ''
404       - cntt-branch:
405           branch: 'master'
406       - cntt-DEBUG:
407           DEBUG: 'true'
408       - cntt-EXTERNAL_NETWORK:
409           EXTERNAL_NETWORK: public
410     properties:
411       - build-blocker:
412           use-build-blocker: true
413           blocking-level: 'NODE'
414           blocking-jobs:
415             - '^cntt-{tag}-(daily|gate)$'
416     builders:
417       - multijob:
418           name: deploy
419           projects:
420             - name: 'cntt-deploy-daily-{tag}'
421               <<: *cntt-jobs
422       - multijob:
423           name: remove former images
424           projects:
425             - name: 'cntt-opnfv-functest-healthcheck-{tag}-rmi'
426               <<: *cntt-jobs
427             - name: 'cntt-opnfv-functest-smoke-{tag}-rmi'
428               <<: *cntt-jobs
429             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rmi'
430               <<: *cntt-jobs
431             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rmi'
432               <<: *cntt-jobs
433             - name: 'cntt-opnfv-functest-vnf-{tag}-rmi'
434               <<: *cntt-jobs
435       - multijob:
436           name: pull containers
437           projects:
438             - name: 'cntt-opnfv-functest-healthcheck-{tag}-pull'
439               <<: *cntt-jobs
440             - name: 'cntt-opnfv-functest-smoke-{tag}-pull'
441               <<: *cntt-jobs
442             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-pull'
443               <<: *cntt-jobs
444             - name: 'cntt-opnfv-functest-benchmarking-{tag}-pull'
445               <<: *cntt-jobs
446             - name: 'cntt-opnfv-functest-vnf-{tag}-pull'
447               <<: *cntt-jobs
448       - multijob:
449           name: opnfv/functest-healthcheck:{functest_tag}
450           condition: ALWAYS
451           projects:
452             - name: 'cntt-opnfv-functest-healthcheck-{tag}-connection_check-run'
453               <<: *cntt-jobs
454             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork1-run'
455               <<: *cntt-jobs
456             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork2-run'
457               <<: *cntt-jobs
458             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready1-run'
459               <<: *cntt-jobs
460             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready2-run'
461               <<: *cntt-jobs
462             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm1-run'
463               <<: *cntt-jobs
464             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm2-run'
465               <<: *cntt-jobs
466             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_ssh-run'
467               <<: *cntt-jobs
468             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_userdata-run'
469               <<: *cntt-jobs
470             - name: 'cntt-opnfv-functest-healthcheck-{tag}-cinder_test-run'
471               <<: *cntt-jobs
472             - name: 'cntt-opnfv-functest-healthcheck-{tag}-odl-run'
473               <<: *cntt-jobs
474             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tempest_smoke-run'
475               <<: *cntt-jobs
476       - multijob:
477           name: opnfv/functest-smoke:{functest_tag}
478           condition: ALWAYS
479           projects:
480             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron-tempest-plugin-api-run'
481               <<: *cntt-jobs
482             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_cinder-run'
483               <<: *cntt-jobs
484             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_keystone-run'
485               <<: *cntt-jobs
486             - name: 'cntt-opnfv-functest-smoke-{tag}-rally_sanity-run'
487               <<: *cntt-jobs
488             - name: 'cntt-opnfv-functest-smoke-{tag}-refstack_defcore-run'
489               <<: *cntt-jobs
490             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_full-run'
491               <<: *cntt-jobs
492             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_scenario-run'
493               <<: *cntt-jobs
494             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_slow-run'
495               <<: *cntt-jobs
496             - name: 'cntt-opnfv-functest-smoke-{tag}-patrole-run'
497               <<: *cntt-jobs
498             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron_trunk-run'
499               <<: *cntt-jobs
500             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-bgpvpn-run'
501               <<: *cntt-jobs
502             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-sfc-run'
503               <<: *cntt-jobs
504             - name: 'cntt-opnfv-functest-smoke-{tag}-barbican-run'
505               <<: *cntt-jobs
506       - multijob:
507           name: opnfv/functest-smoke-cntt:{tag}
508           condition: ALWAYS
509           projects:
510             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-neutron-tempest-plugin-api-run'
511               <<: *cntt-jobs
512             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_cinder-run'
513               <<: *cntt-jobs
514             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_keystone-run'
515               <<: *cntt-jobs
516             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rally_sanity-run'
517               <<: *cntt-jobs
518             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_full-run'
519               <<: *cntt-jobs
520             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_scenario-run'
521               <<: *cntt-jobs
522             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-tempest_slow-run'
523               <<: *cntt-jobs
524       - multijob:
525           name: opnfv/functest-benchmarking:{functest_tag}
526           condition: ALWAYS
527           projects:
528             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rally_full-run'
529               <<: *cntt-jobs
530             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rally_jobs-run'
531               <<: *cntt-jobs
532             - name: 'cntt-opnfv-functest-benchmarking-{tag}-vmtp-run'
533               <<: *cntt-jobs
534             - name: 'cntt-opnfv-functest-benchmarking-{tag}-shaker-run'
535               <<: *cntt-jobs
536       - multijob:
537           name: opnfv/functest-vnf:{functest_tag}
538           condition: ALWAYS
539           execution-type: SEQUENTIALLY
540           projects:
541             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify-run'
542               <<: *cntt-jobs
543             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify_ims-run'
544               <<: *cntt-jobs
545             - name: 'cntt-opnfv-functest-vnf-{tag}-heat_ims-run'
546               <<: *cntt-jobs
547             - name: 'cntt-opnfv-functest-vnf-{tag}-vyos_vrouter-run'
548               <<: *cntt-jobs
549             - name: 'cntt-opnfv-functest-vnf-{tag}-juju_epc-run'
550               <<: *cntt-jobs
551       - multijob:
552           name: dump all campaign data
553           projects:
554             - name: 'cntt-{tag}-zip'
555               <<: *cntt-jobs
556
557 - trigger:
558     name: cntt-patchset-created
559     triggers:
560       - gerrit:
561           server-name: 'gerrit.opnfv.org'
562           trigger-on:
563             - patchset-created-event
564             - comment-added-contains-event:
565                 comment-contains-value: 'recheck'
566             - comment-added-contains-event:
567                 comment-contains-value: 'reverify'
568           projects:
569             - project-compare-type: 'ANT'
570               project-pattern: 'airship'
571               branches:
572                 - branch-compare-type: 'ANT'
573                   branch-pattern: '**/{branch}'
574           skip-vote:
575             successful: false
576             failed: false
577             unstable: false
578             notbuilt: false
579
580 - job-template:
581     name: 'cntt-{tag}-gate'
582     project-type: multijob
583     disabled: true
584     triggers:
585       - cntt-patchset-created:
586           branch: '{branch}'
587     parameters:
588       - cntt-slave:
589           slave: '{slave}'
590       - cntt-build_tag:
591           build_tag: ''
592       - cntt-DEBUG:
593           DEBUG: 'true'
594       - cntt-EXTERNAL_NETWORK:
595           EXTERNAL_NETWORK: public
596     properties:
597       - build-blocker:
598           use-build-blocker: true
599           blocking-level: 'NODE'
600           blocking-jobs:
601             - '^cntt-{tag}-(daily|gate)$'
602     builders:
603       - multijob:
604           name: deploy
605           projects:
606             - name: 'cntt-deploy-gate-{tag}'
607               <<: *cntt-jobs
608       - multijob:
609           name: remove former images
610           projects:
611             - name: 'cntt-opnfv-functest-healthcheck-{tag}-rmi'
612               <<: *cntt-jobs
613             - name: 'cntt-opnfv-functest-smoke-{tag}-rmi'
614               <<: *cntt-jobs
615             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-rmi'
616               <<: *cntt-jobs
617             - name: 'cntt-opnfv-functest-benchmarking-{tag}-rmi'
618               <<: *cntt-jobs
619             - name: 'cntt-opnfv-functest-vnf-{tag}-rmi'
620               <<: *cntt-jobs
621       - multijob:
622           name: pull containers
623           projects:
624             - name: 'cntt-opnfv-functest-healthcheck-{tag}-pull'
625               <<: *cntt-jobs
626             - name: 'cntt-opnfv-functest-smoke-{tag}-pull'
627               <<: *cntt-jobs
628             - name: 'cntt-opnfv-functest-smoke-cntt-{tag}-pull'
629               <<: *cntt-jobs
630             - name: 'cntt-opnfv-functest-benchmarking-{tag}-pull'
631               <<: *cntt-jobs
632             - name: 'cntt-opnfv-functest-vnf-{tag}-pull'
633               <<: *cntt-jobs
634       - multijob:
635           name: opnfv/functest-healthcheck:{functest_tag}
636           projects:
637             - name: 'cntt-opnfv-functest-healthcheck-{tag}-connection_check-run'
638               <<: *cntt-jobs
639             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork1-run'
640               <<: *cntt-jobs
641             - name: 'cntt-opnfv-functest-healthcheck-{tag}-tenantnetwork2-run'
642               <<: *cntt-jobs
643             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready1-run'
644               <<: *cntt-jobs
645             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vmready2-run'
646               <<: *cntt-jobs
647             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm1-run'
648               <<: *cntt-jobs
649             - name: 'cntt-opnfv-functest-healthcheck-{tag}-singlevm2-run'
650               <<: *cntt-jobs
651             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_ssh-run'
652               <<: *cntt-jobs
653             - name: 'cntt-opnfv-functest-healthcheck-{tag}-vping_userdata-run'
654               <<: *cntt-jobs
655             - name: 'cntt-opnfv-functest-healthcheck-{tag}-cinder_test-run'
656               <<: *cntt-jobs
657             - name: 'cntt-opnfv-functest-healthcheck-{tag}-odl-run'
658               <<: *cntt-jobs
659       - multijob:
660           name: opnfv/functest-smoke:{functest_tag}
661           projects:
662             - name: 'cntt-opnfv-functest-smoke-{tag}-tempest_scenario-run'
663               <<: *cntt-jobs
664             - name: 'cntt-opnfv-functest-smoke-{tag}-neutron_trunk-run'
665               <<: *cntt-jobs
666             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-bgpvpn-run'
667               <<: *cntt-jobs
668             - name: 'cntt-opnfv-functest-smoke-{tag}-networking-sfc-run'
669               <<: *cntt-jobs
670             - name: 'cntt-opnfv-functest-smoke-{tag}-barbican-run'
671               <<: *cntt-jobs
672       - multijob:
673           name: opnfv/functest-benchmarking:{functest_tag}
674           projects:
675             - name: 'cntt-opnfv-functest-benchmarking-{tag}-vmtp-run'
676               <<: *cntt-jobs
677             - name: 'cntt-opnfv-functest-benchmarking-{tag}-shaker-run'
678               <<: *cntt-jobs
679       - multijob:
680           name: opnfv/functest-vnf:{functest_tag}
681           condition: ALWAYS
682           execution-type: SEQUENTIALLY
683           projects:
684             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify-run'
685               <<: *cntt-jobs
686             - name: 'cntt-opnfv-functest-vnf-{tag}-cloudify_ims-run'
687               <<: *cntt-jobs
688             - name: 'cntt-opnfv-functest-vnf-{tag}-heat_ims-run'
689               <<: *cntt-jobs
690             - name: 'cntt-opnfv-functest-vnf-{tag}-vyos_vrouter-run'
691               <<: *cntt-jobs
692             - name: 'cntt-opnfv-functest-vnf-{tag}-juju_epc-run'
693               <<: *cntt-jobs
694
695 - project:
696     name: 'cntt'
697     <<: *cntt-params
698     jobs:
699       - 'cntt-{tag}-daily'
700       - 'cntt-{tag}-gate'
701
702 - view:
703     name: cntt
704     view-type: list
705     columns:
706       - status
707       - weather
708       - job
709       - last-success
710       - last-failure
711       - last-duration
712     regex: ^cntt-[a-z]+-(daily|check|gate)$