forked from h5py/h5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
196 lines (179 loc) · 4.11 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
language: python
notifications:
email: false
addons:
apt:
packages:
- libhdf5-serial-dev
sudo: false
dist: trusty
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/hdf5
- $HOME/.ccache # https://github.com/travis-ci/travis-ci/issues/5853
env:
global:
- HDF5_CACHE_DIR=$HOME/.cache/hdf5
matrix:
- TOXENV=docs
- TOXENV=check-manifest
- TOXENV=checkreadme
matrix:
include:
# needed to work around https://github.com/travis-ci/travis-ci/issues/4794
# TODO: We should see if we can replace this with installing python via pyenv # based on toxenv
# Python 2.6
- python: 2.6
env:
- TOXENV=py26-test-deps
- python: 2.6
env:
- TOXENV=py26-test-mindeps
- python: 2.6
env:
- TOXENV=py26-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 2.6
env:
- TOXENV=py26-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# Python 2.7
- python: 2.7
env:
- TOXENV=py27-test-deps
- python: 2.7
env:
- TOXENV=py27-test-mindeps
- python: 2.7
env:
- TOXENV=py27-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 2.7
env:
- TOXENV=py27-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# Python 3.3
- python: 3.3
env:
- TOXENV=py33-test-deps
- python: 3.3
env:
- TOXENV=py33-test-mindeps
- python: 3.3
env:
- TOXENV=py33-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 3.3
env:
- TOXENV=py33-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# Python 3.4
- python: 3.4
env:
- TOXENV=py34-test-deps
- python: 3.4
env:
- TOXENV=py34-test-mindeps
- python: 3.4
env:
- TOXENV=py34-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 3.4
env:
- TOXENV=py34-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# Python 3.5
- python: 3.5
env:
- TOXENV=py35-test-deps
- python: 3.5
env:
- TOXENV=py35-test-mindeps
- python: 3.5
env:
- TOXENV=py35-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 3.5
env:
- TOXENV=py35-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# Python 3.6
- python: 3.6
env:
- TOXENV=py36-test-deps
- python: 3.6
env:
- TOXENV=py36-test-deps-pre
- python: 3.6
env:
- TOXENV=py36-test-mindeps
- python: 3.6
env:
- TOXENV=py36-test-deps
TOX_TESTENV_PASSENV=LANG LC_ALL
LANG=C
LC_ALL=C
- python: 3.6
env:
- TOXENV=py36-test-deps
HDF5_VERSION=1.10.1
HDF5_DIR=$HDF5_CACHE_DIR/$HDF5_VERSION
# MPI tests
# TODO: We should test with newer versions of HDF5
- python: 2.7
env:
- TOXENV=py27-test-mindeps-mpi4py
- CC="mpicc"
- HDF5_MPI="ON"
addons:
apt:
packages:
- openmpi-bin # 1.6.5 based on trusty
- libopenmpi-dev
- libhdf5-openmpi-dev # 1.8.11 based on trusty
- python: 3.6
env:
- TOXENV=py36-test-mindeps-mpi4py
- CC="mpicc"
- HDF5_MPI="ON"
addons:
apt:
packages:
- openmpi-bin # 1.6.5 based on trusty
- libopenmpi-dev
- libhdf5-openmpi-dev # 1.8.11 based on trusty
# Additional python versions which are not officially supported
- python: "nightly"
env:
- TOXENV=nightly
- python: pypy
env:
- TOXENV=pypy-test-deps
allow_failures:
- python: pypy
- python: 'nightly'
before_install:
# - export PATH=/usr/lib/ccache:$PATH
- ccache -s
install:
- pip install tox
- ci/travis/get_hdf5_if_needed.sh
- ls -lRa $HDF5_CACHE_DIR
script:
- tox