From 544794cb8210787342d26c43933bbbf83b90f04b Mon Sep 17 00:00:00 2001 From: ghanshyam Date: Tue, 12 Mar 2019 00:46:15 +0000 Subject: [PATCH] Rename and migrate the xenial gate jobsto bionic We have migrated the zuulv3 job to Bionic during Dec/Jan month. - http://lists.openstack.org/pipermail/openstack-discuss/2018-December/000837.html - https://etherpad.openstack.org/p/devstack-bionic But that effort does not move all gate job to Bionic as there are large amount of jobs are still legacy jobs. All the legacy jobs still use Xenial as nodeset. As per the decided runtime for Stein, we need to test everything on openstack CI/CD on Bionic - https://governance.openstack.org/tc/reference/runtimes/stein.html Below patch move the legacy base jobs to bionic which will move the derived jobs automatically to bionic. These jobs are modified with branch variant so that they will use Bionic node from stein onwards and xenial for all other stable branches until stable/rocky. - https://review.openstack.org/#/c/639096 This commit rename the ubuntu based gate job so that we do not need to rename them on every new distro migration. More Details: https://etherpad.openstack.org/p/legacy-job-bionic Depends-On: https://review.openstack.org/#/c/639096 Making failing job n-v till story#2005227 Change-Id: Ia00af4f5e40075a2cd8257afdd8e41c2ef40f932 --- .zuul.yaml | 11 ++++++----- .../post.yaml | 0 .../run.yaml | 0 3 files changed, 6 insertions(+), 5 deletions(-) rename playbooks/legacy/{freezer-web-ui-ubuntu-xenial => freezer-web-ui-ubuntu}/post.yaml (100%) rename playbooks/legacy/{freezer-web-ui-ubuntu-xenial => freezer-web-ui-ubuntu}/run.yaml (100%) diff --git a/.zuul.yaml b/.zuul.yaml index b22a3c0..ddc954f 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -7,18 +7,19 @@ - openstack-python36-jobs check: jobs: - - freezer-web-ui-ubuntu-xenial: - voting: true + # making n-v till story#2005227 + - freezer-web-ui-ubuntu: + voting: false - openstack-tox-pylint gate: jobs: - openstack-tox-pylint - job: - name: freezer-web-ui-ubuntu-xenial + name: freezer-web-ui-ubuntu parent: legacy-dsvm-base - run: playbooks/legacy/freezer-web-ui-ubuntu-xenial/run.yaml - post-run: playbooks/legacy/freezer-web-ui-ubuntu-xenial/post.yaml + run: playbooks/legacy/freezer-web-ui-ubuntu/run.yaml + post-run: playbooks/legacy/freezer-web-ui-ubuntu/post.yaml timeout: 7800 required-projects: - openstack-infra/devstack-gate diff --git a/playbooks/legacy/freezer-web-ui-ubuntu-xenial/post.yaml b/playbooks/legacy/freezer-web-ui-ubuntu/post.yaml similarity index 100% rename from playbooks/legacy/freezer-web-ui-ubuntu-xenial/post.yaml rename to playbooks/legacy/freezer-web-ui-ubuntu/post.yaml diff --git a/playbooks/legacy/freezer-web-ui-ubuntu-xenial/run.yaml b/playbooks/legacy/freezer-web-ui-ubuntu/run.yaml similarity index 100% rename from playbooks/legacy/freezer-web-ui-ubuntu-xenial/run.yaml rename to playbooks/legacy/freezer-web-ui-ubuntu/run.yaml