Fix ansible-playbook segfault
ansible-playbook segfaults when we supply the "-I" option to pip. Remove this option since it's also slowing down our run. See related bug for more details. Closes-Bug: 1459801 Change-Id: Idaf090d642c5e0ab5e143d824ca99f9d39679d87
This commit is contained in:
parent
1f31bc58db
commit
fa8820ce81
@ -22,4 +22,4 @@
|
||||
- name: "DIB - Resyncing local repository"
|
||||
command: git pull --ff-only chdir=/opt/stack/diskimage-builder
|
||||
- name: "DIB - Installing patched library."
|
||||
command: pip install -I --force-reinstall /opt/stack/diskimage-builder
|
||||
command: pip install --force-reinstall /opt/stack/diskimage-builder
|
||||
|
@ -25,4 +25,4 @@
|
||||
script: parse_zuul_changes.py /opt/stack/python-ironicclient https://review.openstack.org openstack/python-ironicclient "{{ lookup('env', 'ZUUL_CHANGES') }}"
|
||||
when: ci_testing == true
|
||||
- name: "python-ironicclient - Installing patched python-ironicclient library."
|
||||
command: pip install -I --force-reinstall /opt/stack/python-ironicclient
|
||||
command: pip install --force-reinstall /opt/stack/python-ironicclient
|
||||
|
@ -25,4 +25,4 @@
|
||||
script: parse_zuul_changes.py /opt/stack/shade https://review.openstack.org openstack-infra/shade "{{ lookup('env', 'ZUUL_CHANGES') }}"
|
||||
when: ci_testing == true
|
||||
- name: "Shade - Installing patched shade library."
|
||||
command: pip install -I --force-reinstall /opt/stack/shade
|
||||
command: pip install --force-reinstall /opt/stack/shade
|
||||
|
Loading…
Reference in New Issue
Block a user