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>
(cherry picked from commit d3f608128c)
This commit is contained in:
Lance Albertson 2022-05-19 13:54:14 -07:00 committed by Dr. Jens Harbott
parent ac50a8cb3e
commit 0fa037fff1
2 changed files with 3 additions and 2 deletions

View File

@ -91,6 +91,7 @@
- project-template:
name: openstack-chef-repo-jobs
queue: openstack-chef
check:
jobs:
- openstack-chef-delivery
@ -101,7 +102,6 @@
- openstack-cinc-integration-centos
- openstack-cinc-integration-ubuntu
gate:
queue: openstack-chef
jobs:
- openstack-chef-delivery
- openstack-chef-integration-centos
@ -113,6 +113,7 @@
- project-template:
name: openstack-chef-jobs
queue: openstack-chef
check:
jobs:
- openstack-chef-delivery
@ -127,7 +128,6 @@
- openstack-cinc-integration-centos
- openstack-cinc-integration-ubuntu
gate:
queue: openstack-chef
jobs:
- openstack-chef-delivery
- openstack-chef-integration-centos

View File

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