From e3d911b3ef9140274ee4a3aa4b3d4c300a4cfd27 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 5 Jul 2018 17:42:19 -0500 Subject: [PATCH] Install build bindep profiles alongside doc and test In order to be able to separate out depends needed for building wheels, depends needed for running tests and depends needed for running software, we can tag build depends with a 'build' profile. However, doing that then means we don't have all of the things we need for building docs or testing things. Add build to the profile list for both docs builds and test installs. Change-Id: I0689acb53789d3650926a3e11aec4570df5d950c Needed-By: https://review.openstack.org/580159 --- playbooks/sphinx/pre.yaml | 2 +- roles/bindep/defaults/main.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/sphinx/pre.yaml b/playbooks/sphinx/pre.yaml index e3a9ebdb8..a161787d2 100644 --- a/playbooks/sphinx/pre.yaml +++ b/playbooks/sphinx/pre.yaml @@ -1,7 +1,7 @@ - hosts: all roles: - role: bindep - bindep_profile: doc + bindep_profile: doc build bindep_dir: "{{ zuul_work_dir }}" - ensure-sphinx - revoke-sudo diff --git a/roles/bindep/defaults/main.yaml b/roles/bindep/defaults/main.yaml index 2438e30bb..cc219160b 100644 --- a/roles/bindep/defaults/main.yaml +++ b/roles/bindep/defaults/main.yaml @@ -1,3 +1,3 @@ --- bindep_dir: "{{ zuul.project.src_dir }}" -bindep_profile: test +bindep_profile: build test