forked from zeromq/pyzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (44 loc) · 1.33 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: python
cache:
apt
pip
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
env:
- ZMQ=
- ZMQ=bundled
- ZMQ=master
before_install:
- sudo add-apt-repository -y ppa:shnatsel/dnscrypt
- sudo apt-get update
- 'if [[ $ZMQ != bundled ]]; then sudo apt-get install -qq libzmq3-dev libsodium-dev; fi'
- 'if [[ $TRAVIS_PYTHON_VERSION != pypy ]]; then wget https://github.com/minrk/travis-wheels/archive/master.zip -O wheels.zip && unzip wheels.zip; fi'
- 'if [[ $TRAVIS_PYTHON_VERSION != pypy ]]; then pip install -q -f travis-wheels-master/wheelhouse cython; fi'
- 'if [[ $ZMQ == master ]]; then wget https://github.com/zeromq/libzmq/archive/master.zip -O libzmq-master.zip && unzip libzmq-master.zip; fi'
- 'if [[ $ZMQ == master ]]; then sh -c "cd libzmq-master; sh autogen.sh; ./configure; make -j; sudo make install; sudo ldconfig"; fi'
- pip install -q nose
install:
- 'if [[ $ZMQ == master ]]; then export ZMQ=/usr/local; fi'
- python setup.py build_ext --inplace --zmq=$ZMQ
matrix:
exclude:
- python: 2.6
env: ZMQ=bundled
- python: 2.6
env: ZMQ=master
- python: 3.2
env: ZMQ=bundled
- python: 3.2
env: ZMQ=master
- python: 3.3
env: ZMQ=bundled
- python: 3.3
env: ZMQ=master
allow_failures:
- env: ZMQ=master
script: python setup.py test