Update zuul config to not use the deprecated queue syntax

This is regards to the following email [1] which also references [2] with the
actual fix.

In addition, disable auto discovery as a workaround in setup.py [3]

[1] http://lists.openstack.org/pipermail/openstack-discuss/2022-May/028603.html
[2] https://lists.zuul-ci.org/pipermail/zuul-discuss/2022-May/001801.html
[3] https://review.opendev.org/c/openstack/tripleo-quickstart/+/835192

Change-Id: I93b97525172f26a25e189661fc31ecd80b88395b
Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
Lance Albertson 2022-05-19 13:54:14 -07:00
parent acfa49ae4c
commit d3f608128c
2 changed files with 3 additions and 2 deletions

View File

@ -125,6 +125,7 @@
- project-template:
name: openstack-chef-repo-jobs
queue: openstack-chef
check:
jobs:
- openstack-chef-delivery
@ -138,7 +139,6 @@
- openstack-cinc-integration-centos-7
- openstack-cinc-integration-ubuntu
gate:
queue: openstack-chef
jobs:
- openstack-chef-delivery
- openstack-chef-integration-centos-7
@ -153,6 +153,7 @@
- project-template:
name: openstack-chef-jobs
queue: openstack-chef
check:
jobs:
- openstack-chef-delivery
@ -172,7 +173,6 @@
- openstack-cinc-integration-centos-stream-8
- openstack-cinc-integration-ubuntu
gate:
queue: openstack-chef
jobs:
- openstack-chef-delivery
- openstack-chef-integration-centos-7

View File

@ -17,5 +17,6 @@ import setuptools
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
py_modules=[],
pbr=True)