From 9d28a9f8492758902325cc7c0d2278463123323a Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Fri, 31 Aug 2018 12:25:49 +0100 Subject: [PATCH] Set up initial .zuul.yaml Set up placement with a noop job for 'gate' and 'check' and non-voting unit, functional and pep8 test for 'check'. These jobs will be change to non-voting as they reach a working state, and additional jobs will be added as required. The noop jobs are required for any code to merge. Also .gitreview is updated to point to the right repo. Change-Id: I741a6b86eda12afb515b6207a4535e8b6e1ead44 --- .gitreview | 2 +- .zuul.yaml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .zuul.yaml diff --git a/.gitreview b/.gitreview index 3a2f61c4b..c4efa3eb7 100644 --- a/.gitreview +++ b/.gitreview @@ -1,4 +1,4 @@ [gerrit] host=review.openstack.org port=29418 -project=openstack/nova.git +project=openstack/placement.git diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 000000000..c07d343fa --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,17 @@ +# Initial set of jobs that do not vote so we can observe +# improvements over time. +- project: + templates: + - noop-jobs + check: + jobs: + - openstack-tox-functional: + voting: false + - openstack-tox-functional-py35: + voting: false + - openstack-tox-py27: + voting: false + - openstack-tox-py35: + voting: false + - openstack-tox-pep8: + voting: false