Commit 0e90e04f by Christine Lytwynec

use pip instead of pip-accel for jenkins workers

parent 0b6af757
...@@ -30,24 +30,30 @@ ...@@ -30,24 +30,30 @@
depth=1 depth=1
sudo_user: "{{ jenkins_user }}" sudo_user: "{{ jenkins_user }}"
- name: Pip installs that are needed for pip-accel to work for us # pip-accel skipped due to conflicting versions of pip required
pip: > # by the pip-accel package and edx-platform
name="{{ item }}" # - name: Pip installs that are needed for pip-accel to work for us
virtualenv={{ jenkins_home }}/edx-venv # pip: >
virtualenv_command=virtualenv-2.7 # name="{{ item }}"
sudo_user: "{{ jenkins_user }}" # virtualenv={{ jenkins_home }}/edx-venv
with_items: pip_accel_reqs # virtualenv_command=virtualenv-2.7
# sudo_user: "{{ jenkins_user }}"
# with_items: pip_accel_reqs
# Install the platform requirements using pip-accel. # Install the platform requirements using pip.
# This will allow the binary distributions to be downloaded from S3 # Installing the platform requirements using pip-accel
# rather than compiled each time. # would allow the binary distributions to be downloaded from S3
- name: Install edx-platform requirements using pip-accel # rather than compiled each time. This was previously enabled,
# but reverted back to pip because the current version of pip-accel
# (0.22.4) is only compatible with pip >= 1.4, < 1.5 and the current
# version of pip in edx-platform is 6.0.8.
- name: Install edx-platform requirements using pip
pip: > pip: >
requirements={{ jenkins_home }}/shallow-clone/requirements/edx/{{ item }} requirements={{ jenkins_home }}/shallow-clone/requirements/edx/{{ item }}
extra_args="--exists-action=w" extra_args="--exists-action=w"
virtualenv={{ jenkins_home }}/edx-venv virtualenv={{ jenkins_home }}/edx-venv
virtualenv_command=virtualenv-2.7 virtualenv_command=virtualenv-2.7
executable=pip-accel executable=pip
with_items: with_items:
- pre.txt - pre.txt
- github.txt - github.txt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment