From ed9cf21ce9e53d303c4da855dfce7cc01fdb7b06 Mon Sep 17 00:00:00 2001 From: David Moreau Simard Date: Tue, 6 Nov 2018 23:10:44 -0500 Subject: [PATCH] Namespace Zuul jobs and use ubuntu bionic The xenial image that was used by tox-linters had a version of python not high enough for black (>=3.6). Let's test everything on bionic and ensure that we control which nodeset are used. Change-Id: Ifb65cef05abcd67fba7f0941cf313dfc23e6b3ca --- .zuul.d/jobs.yaml | 11 ++++++++++- .zuul.d/project.yaml | 8 ++++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.zuul.d/jobs.yaml b/.zuul.d/jobs.yaml index b08f60a..55f896f 100644 --- a/.zuul.d/jobs.yaml +++ b/.zuul.d/jobs.yaml @@ -1,15 +1,24 @@ - job: name: ara-server-ansible-integration parent: tox + nodeset: ubuntu-bionic vars: tox_envlist: ansible-integration - job: - name: tox-py3 + name: ara-tox-py3 parent: tox + nodeset: ubuntu-bionic vars: tox_envlist: py3 +- job: + name: ara-tox-linters + parent: tox + nodeset: ubuntu-bionic + vars: + tox_envlist: linters + # TODO: Delete this, all linters have been merged into tox-linters - job: name: tox-format diff --git a/.zuul.d/project.yaml b/.zuul.d/project.yaml index 2be4f33..eba6be2 100644 --- a/.zuul.d/project.yaml +++ b/.zuul.d/project.yaml @@ -7,9 +7,9 @@ jobs: - ara-server-ansible-integration: voting: false - - tox-linters - - tox-py3 + - ara-tox-linters + - ara-tox-py3 gate: jobs: - - tox-linters - - tox-py3 + - ara-tox-linters + - ara-tox-py3