forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
98 lines (91 loc) · 2.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
# Run jobs on container-based infrastructure, can be overridden per job
sudo: false
# Travis whitelists the installable packages, additions can be requested
# https://github.com/travis-ci/apt-package-whitelist
addons:
apt:
packages: &common_packages
- gfortran
- libatlas-dev
- libatlas-base-dev
# Speedup builds, particularly when USE_CHROOT=1
- eatmydata
cache:
directories:
- $HOME/.cache/pip
env:
global:
- WHEELHOUSE_UPLOADER_USERNAME=travis.numpy
# The following is generated with the command:
# travis encrypt -r numpy/numpy WHEELHOUSE_UPLOADER_SECRET=tH3AP1KeY
- secure: "IEicLPrP2uW+jW51GRwkONQpdPqMVtQL5bdroqR/U8r9Tr\
XrbCVRhp4AP8JYZT0ptoBpmZWWGjmKBndB68QlMiUjQPow\
iFWt9Ka92CaqYdU7nqfWp9VImSndPmssjmCXJ1v1IjZPAM\
ahp7Qnm0rWRmA0z9SomuRUQOJQ6s684vU="
python:
- 2.7
- 3.4
- 3.5
matrix:
include:
- python: 2.7
env: USE_CHROOT=1 ARCH=i386 DIST=trusty PYTHON=2.7
sudo: true
dist: trusty
addons:
apt:
packages:
- debootstrap
- python: 3.4
env: USE_DEBUG=1
sudo: true
dist: trusty
addons:
apt:
packages:
- *common_packages
- python3-dbg
- python3-dev
- python3-nose
- python3-setuptools
- python: 2.7
env: NPY_RELAXED_STRIDES_CHECKING=0 PYTHON_OO=1
- python: 2.7
env: USE_WHEEL=1
- python: 3.5
env: USE_WHEEL=1
- python: 3.5
env: USE_SDIST=1
- python: 2.7
env:
- PYTHONOPTIMIZE=2
- USE_ASV=1
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
- mkdir builds
- pushd builds
# Build into own virtualenv
# We therefore control our own environment, avoid travis' numpy
#
# Some change in virtualenv 14.0.5 caused `test_f2py` to fail. So, we have
# pinned `virtualenv` to the last known working version to avoid this failure.
# Appears we had some issues with certificates on Travis. It looks like
# bumping to 14.0.6 will help.
- pip install -U 'virtualenv==14.0.6'
- virtualenv --python=python venv
- source venv/bin/activate
- python -V
- pip install --upgrade pip setuptools
- pip install nose pytz cython
- if [ -n "$USE_ASV" ]; then pip install asv; fi
- popd
script:
- ./tools/travis-test.sh
after_success:
- ./tools/travis-upload-wheel.sh