Switch to envlist list for roles

Because we plan on using include_roles for openstack-zuul-jobs, we can
safely switch to just using envlist.

Change-Id: Icd8ed9f769c1b2ce7fcb9c3a75296f0279a24d9f
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-05-19 14:07:39 -04:00
parent 8657f44d57
commit 8d1dbe8570
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
10 changed files with 11 additions and 9 deletions

View File

@ -1,2 +1,2 @@
---
run_cover_envlist: cover
envlist: cover

View File

@ -1,4 +1,4 @@
- name: Execute run-cover.sh.
shell: "/usr/local/jenkins/slave_scripts/run-cover.sh {{ run_cover_envlist }}"
shell: "/usr/local/jenkins/slave_scripts/run-cover.sh {{ envlist }}"
args:
chdir: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}"

View File

@ -1,2 +1,2 @@
---
run_docs_envlist: venv
envlist: venv

View File

@ -1,4 +1,4 @@
- name: Execute run-docs.sh.
shell: "/usr/local/jenkins/slave_scripts/run-docs.sh {{ run_docs_envlist }}"
shell: "/usr/local/jenkins/slave_scripts/run-docs.sh {{ envlist }}"
args:
chdir: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}"

View File

@ -1,2 +1,2 @@
---
run_tarball_envlist: venv
envlist: venv

View File

@ -1,4 +1,4 @@
- name: Execute run-tarball.sh.
shell: "/usr/local/jenkins/slave_scripts/run-tarball.sh {{ run_tarball_envlist }}"
shell: "/usr/local/jenkins/slave_scripts/run-tarball.sh {{ envlist }}"
args:
chdir: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}"

View File

@ -1,2 +1,4 @@
---
# TODO(pabelanger): Remove in the following comment to unwedge gate.
run_tox_envlist:
envlist: "{{ run_tox_envlist }}"

View File

@ -1,4 +1,4 @@
- name: Run tox
shell: "/usr/local/jenkins/slave_scripts/run-tox.sh {{ run_tox_envlist }}"
shell: "/usr/local/jenkins/slave_scripts/run-tox.sh {{ envlist }}"
args:
chdir: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}"

View File

@ -1,2 +1,2 @@
---
run_wheel_envlist: venv
envlist: venv

View File

@ -1,4 +1,4 @@
- name: Execute run-wheel.sh.
shell: "/usr/local/jenkins/slave_scripts/run-wheel.sh {{ run_wheel_envlist }}"
shell: "/usr/local/jenkins/slave_scripts/run-wheel.sh {{ envlist }}"
args:
chdir: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}"