From 22a14659870b9286f136e12ebcd1eec781426572 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Tue, 5 May 2020 16:45:26 -0500 Subject: [PATCH] Add stable branch jobs on the plugins master gate Supported stable branches in maintenance state (stein, train, ussuri) use the Tempest and plugins master version for their testing. To make sure master version (new tests or any changes) is compatible with stable branch testing, we need to add the stable branches job on the plugins master gate. Tempest and many other plugins are already testing the stable branches in same way[1]. Ussuri onwards, Tempest or plugins are py3 only, so we are running only python3 version of stable jobs Tempest plugins guide for stable branch testing: - https://docs.openstack.org/tempest/latest/stable_branch_testing_policy.html [1] https://opendev.org/openstack/tempest/src/commit/e8f1876aa6772077f85f380677b30251c2454505/.zuul.yaml#L646 Change-Id: Ib55ee338e788fe9c529bdc0f12bc91899d6c8618 --- .zuul.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.zuul.yaml b/.zuul.yaml index 3f9d277..604faf3 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -10,6 +10,30 @@ voting: true - cloudkitty-tempest-full-v2-storage-elasticsearch: voting: true + - cloudkitty-tempest-full-v2-storage-influxdb-ussuri + - cloudkitty-tempest-full-v2-storage-influxdb-train + - cloudkitty-tempest-full-v2-storage-influxdb-stein gate: queue: cloudkitty jobs: *cloudkitty_tempest_jobs + +- job: + name: cloudkitty-tempest-full-v2-storage-influxdb-ussuri + parent: cloudkitty-tempest-full-v2-storage-influxdb + override-checkout: stable/ussuri + +- job: + name: cloudkitty-tempest-full-v2-storage-influxdb-train + parent: cloudkitty-tempest-full-v2-storage-influxdb + override-checkout: stable/train + vars: + devstack_localrc: + USE_PYTHON3: True + +- job: + name: cloudkitty-tempest-full-v2-storage-influxdb-stein + parent: cloudkitty-tempest-full-v2-storage-influxdb + override-checkout: stable/stein + vars: + devstack_localrc: + USE_PYTHON3: True