Stop using pre-compiled wheels

We actually want to ensure users are able to use our roles outside of
openstack-infra. Since those users won't have wheel mirrors, disable
our jobs from using them too.

Change-Id: I50d8d5173869c6b69088f6ebad1234fd70135cb8
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-04-13 13:42:33 -04:00
parent 2e0c5a08d2
commit 4c698a9740
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
- hosts: all
tasks:
- name: Disable extra wheels mirror
become: yes
lineinfile:
dest: /etc/pip.conf
regexp: ^extra-index-url
state: absent
- name: Bootstrap tox environment
args:
chdir: "{{ windmill_src_dir }}"