Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add manylinux1 build config #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 19 additions & 4 deletions .travis.yml
Expand Up @@ -5,8 +5,23 @@ python:
- "3.2"
- "3.3"

# command to install dependencies
install: "python setup.py develop"
matrix:
include:
- sudo: required
services:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
- sudo: required
services:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
PRE_CMD=linux32

# command to run tests
script: "python setup.py test"
install:
- if [ ${DOCKER_IMAGE} ]; then docker pull $DOCKER_IMAGE; fi
- if [ -z ${DOCKER_IMAGE+x} ]; then python setup.py develop; fi

script:
- if [ ${DOCKER_IMAGE} ]; docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis/build-wheels.sh; fi
- if [ ${DOCKER_IMAGE} ]; ls wheelhouse/; fi
- if [ -z ${DOCKER_IMAGE+x} ]; then python setup.py test; fi