49c0d0548a
We already have many different jobs defined for Zuul in Neutron repo. Up to now all those jobs were in .zuul.yaml file but this file growth really big and it was hard to read and navigate in it. So this patch proposes to move jobs definitions to zuul.d directory to separate yaml files per "job types". So there will be now separate files with definitions for: * grenade jobs, * base jobs like functional and fullstack, * rally jobs, * tempest multi node jobs, * tempest single node jobs, * tripleo jobs. And maybe others in the future. Change-Id: Ia77f59fded0e6e0ae328d866a7486af02b50c2d7
33 lines
924 B
YAML
33 lines
924 B
YAML
- job:
|
|
name: neutron-centos-7-tripleo-standalone
|
|
parent: tripleo-ci-base-standalone
|
|
nodeset: single-centos-7-node
|
|
voting: false
|
|
vars:
|
|
featureset: '052'
|
|
featureset_override:
|
|
standalone_environment_files:
|
|
- 'environments/services/neutron-ovs.yaml'
|
|
tempest_test_whitelist:
|
|
- 'tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_network_basic_ops'
|
|
irrelevant-files: &irrelevant-files
|
|
- ^(test-|)requirements.txt$
|
|
- ^.*\.rst$
|
|
- ^doc/.*$
|
|
- ^neutron/locale/.*$
|
|
- ^neutron/tests/unit/.*$
|
|
- ^releasenotes/.*$
|
|
- ^setup.cfg$
|
|
- ^tools/.*$
|
|
- ^tox.ini$
|
|
- ^vagrant/.*$
|
|
- ^migration/.*$
|
|
|
|
- job:
|
|
name: neutron-ovn-tripleo-ci-centos-7-containers-multinode
|
|
parent: tripleo-ci-base-multinode
|
|
vars:
|
|
nodes: 1ctlr
|
|
featureset: '010'
|
|
irrelevant-files: *irrelevant-files
|