From 3300282acd8b53be6e6800db1ed8e4147a2645ea Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Mon, 4 May 2020 18:25:32 -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: I7d1db17f492d873ee7408286f8b83c325576012f --- .zuul.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.zuul.yaml b/.zuul.yaml index 881a93c..f30fd52 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -9,6 +9,9 @@ - freezer-tempest-scheduler - freezer-tempest-agent - freezer-tempest-basic-sql + - freezer-tempest-basic-ussuri + - freezer-tempest-basic-train + - freezer-tempest-basic-stein gate: queue: freezer @@ -109,3 +112,23 @@ zuul_copy_output: /etc/hosts: logs +- job: + name: freezer-tempest-basic-ussuri + parent: freezer-tempest-basic + override-checkout: stable/ussuri + +- job: + name: freezer-tempest-basic-train + parent: freezer-tempest-basic + override-checkout: stable/train + vars: + devstack_localrc: + USE_PYTHON3: True + +- job: + name: freezer-tempest-basic-stein + parent: freezer-tempest-basic + override-checkout: stable/stein + vars: + devstack_localrc: + USE_PYTHON3: True \ No newline at end of file