tweaks to ansible config to try to get the deployment to run on travis-ci

This commit is contained in:
Noah Levitt 2016-11-08 13:31:52 -08:00
parent 9d66f294ec
commit cba5fa4a0b
3 changed files with 11 additions and 9 deletions

View file

@ -31,6 +31,7 @@
- libjpeg-turbo8-dev - libjpeg-turbo8-dev
- zlib1g-dev - zlib1g-dev
- gcc - gcc
- g++
- libpython3.4-dev - libpython3.4-dev
- adobe-flashplugin - adobe-flashplugin
- name: install Xvnc upstart config /etc/init/Xvnc.conf - name: install Xvnc upstart config /etc/init/Xvnc.conf

View file

@ -8,16 +8,17 @@
with_items: with_items:
- python-setuptools - python-setuptools
- python3-setuptools - python3-setuptools
- name: download pip-8.1.2.tar.gz - name: download pip-9.0.1.tar.gz
get_url: get_url:
url: https://pypi.python.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/pip-8.1.2.tar.gz url: https://pypi.python.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-9.0.1.tar.gz
dest: /tmp dest: /tmp
checksum: sha1:1c13c247967ec5bee6de5fd104c5d78ba30951c7 checksum: sha1:57ff41e99cb01b6a1c2b0999161589b726f0ec8b
- name: extract pip-8.1.2.tar.gz - name: extract pip-9.0.1.tar.gz
unarchive: src=/tmp/pip-8.1.2.tar.gz dest=/tmp copy=no unarchive: src=/tmp/pip-9.0.1.tar.gz dest=/tmp copy=no
- name: run "python3 setup.py install" in /tmp/pip-8.1.2 - name: run "python3 setup.py install" in /tmp/pip-9.0.1
command: python3 setup.py install chdir=/tmp/pip-8.1.2 command: python3 setup.py install --prefix=/usr/local
creates=/usr/local/lib/python2.7/dist-packages/pip-8.1.2-py2.7.egg/pip/__init__.py chdir=/tmp/pip-9.0.1
creates=/usr/local/lib/python3.4/dist-packages/pip-9.0.1-py3.4.egg/pip/__init__.py
become: true become: true
- name: run "pip install virtualenv" - name: run "pip install virtualenv"
command: pip install virtualenv command: pip install virtualenv

View file

@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup( setuptools.setup(
name='brozzler', name='brozzler',
version='1.1b7.dev113', version='1.1b7.dev114',
description='Distributed web crawling with browsers', description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler', url='https://github.com/internetarchive/brozzler',
author='Noah Levitt', author='Noah Levitt',