mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
* travis: testing matrix.include feature to use docker * Add test script for 32bit * Fix OverflowError in 32bit Environment
39 lines
808 B
YAML
39 lines
808 B
YAML
sudo: false
|
|
language: python
|
|
python: 3.5
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
env:
|
|
- TOXENV=py27-c,py33-c,py34-c,py35-c
|
|
- TOXENV=py27-pure,py33-pure,py34-pure,py35-pure
|
|
- TOXENV=pypy-pure,pypy3-pure
|
|
|
|
matrix:
|
|
include:
|
|
- sudo: required
|
|
services:
|
|
- docker
|
|
env:
|
|
- DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
|
|
install:
|
|
- pip install -U pip
|
|
- pip install cython
|
|
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
|
|
- docker pull $DOCKER_IMAGE
|
|
script:
|
|
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
|
|
|
|
install:
|
|
- pip install -U pip
|
|
- pip install tox cython
|
|
- cython --cplus msgpack/_packer.pyx msgpack/_unpacker.pyx
|
|
|
|
script: tox
|
|
|
|
# vim: sw=2 ts=2
|