forked from h5py/h5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
310 lines (287 loc) · 8.78 KB
/
azure-pipelines.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# from matplotlib's azure setup
variables:
HDF5_CACHE_DIR: $(Pipeline.Workspace)/cache/hdf5
PIP_CACHE_DIR: $(Pipeline.Workspace)/cache/pip
CCACHE_DIR: $(Pipeline.Workspace)/cache/ccache
jobs:
- job: 'static_checks'
pool:
vmImage: ubuntu-20.04
variables:
TOXENV: docs,checkreadme,pre-commit,rever
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
architecture: 'x64'
- script: |
pip install tox
displayName: Install tox
- script: |
tox
displayName: tox
- job: 'linux_wheels'
pool:
vmImage: ubuntu-20.04
variables:
CIBW_BUILD: cp3[789]-manylinux_x86_64
CIBW_MANYLINUX_X86_64_IMAGE: ghcr.io/h5py/manylinux2010_x86_64-hdf5
# Include less debugging info for smaller wheels (default is -g2)
CIBW_ENVIRONMENT: "CFLAGS=-g1"
steps:
- template: ci/azure-pipelines-wheels.yml
parameters:
platform: linux
- job: 'windows_wheels'
pool:
vmImage: vs2017-win2016
variables:
HDF5_VERSION: 1.12.0
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_VSVERSION: "15-64"
CIBW_BUILD: cp3[789]-win_amd64
steps:
- template: ci/azure-pipelines-wheels.yml
parameters:
platform: windows
- job: 'macos_wheels'
pool:
vmImage: macOS-10.15
variables:
MACOSX_DEPLOYMENT_TARGET: 10.9
HDF5_VERSION: 1.12.0
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
CIBW_BUILD: cp3[789]-macosx_x86_64
steps:
- template: ci/azure-pipelines-wheels.yml
parameters:
platform: macos
- job: 'ubuntu1604'
pool:
vmImage: ubuntu-20.04
strategy:
matrix:
# -deps : test with default (latest) versions of dependencies
# -mindeps : test with oldest supported version of (python) dependencies
# -deps-pre : test pre-release versions of (python) dependencies)
# -tables : also check compatibility with pytables
py37: # HDF5 1.8 installed from apt on Ubuntu
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-mindeps,py37-test-deps-tables
# test when we're not in a unicode locale
py37-Clocale:
python.version: '3.7'
TOXENV: py37-test-deps
TOX_TESTENV_PASSENV: LANG LC_ALL
LANG: C
LC_ALL: C
H5PY_ENFORCE_COVERAGE: yes
# Build HDF5 1.10 or 1.12 in the test environment
py37-deps-hdf51103:
python.version: '3.7'
TOXENV: py37-test-deps
HDF5_VERSION: 1.10.3
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
H5PY_ENFORCE_COVERAGE: yes
py37-deps-hdf51106:
python.version: '3.7'
TOXENV: py37-test-deps
HDF5_VERSION: 1.10.6
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
H5PY_ENFORCE_COVERAGE: yes
py38-deps-hdf51107:
python.version: '3.8'
TOXENV: py38-test-deps
HDF5_VERSION: 1.10.7
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
H5PY_ENFORCE_COVERAGE: yes
py38-deps-hdf51120:
python.version: '3.8'
TOXENV: py38-test-deps
HDF5_VERSION: 1.12.0
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
H5PY_ENFORCE_COVERAGE: yes
py39-deps-hdf51120:
python.version: '3.9'
TOXENV: py39-test-deps
HDF5_VERSION: 1.12.0
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
H5PY_ENFORCE_COVERAGE: yes
# do mpi tests
py37-deps-hdf51105-mpi:
python.version: '3.7'
TOXENV: py37-test-mindeps-mpi4py
HDF5_VERSION: 1.10.5
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_MPI: ON
CC: mpicc
maxParallel: 4
steps:
- template: ci/azure-pipelines-steps.yml
parameters:
platform: linux
installer: apt
shell: unix
- job: 'test_linux_wheels'
dependsOn: linux_wheels
pool:
vmImage: ubuntu-20.04
variables:
H5PY_TEST_CHECK_FILTERS: 1
strategy:
matrix:
py37:
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-mindeps,py37-test-deps-pre,py37-test-deps-tables
WHL_FILE: h5py*-cp37-*manylinux2010_x86_64.whl
py38:
python.version: '3.8'
TOXENV: py38-test-deps,py38-test-mindeps,py38-test-deps-pre
WHL_FILE: h5py*-cp38-*manylinux2010_x86_64.whl
py39:
python.version: '3.9'
TOXENV: py39-test-deps,py39-test-mindeps,py39-test-deps-pre
WHL_FILE: h5py*-cp39-*manylinux2010_x86_64.whl
steps:
- template: ci/azure-pipelines-test-wheels.yml
parameters:
platform: linux
- job: 'Windows'
pool:
vmImage: vs2017-win2016
strategy:
matrix:
# -deps : test with default (latest) versions of dependencies
# -mindeps : test with oldest supported version of (python) dependencies
# -deps-pre : test pre-release versions of (python) dependencies)
#
# 64 bit - HDF5 1.8
py37-hdf518:
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-deps-pre
HDF5_VERSION: 1.8.17
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_VSVERSION: "15-64"
H5PY_ENFORCE_COVERAGE: yes
# 64 bit - HDF5 1.10
py38-hdf5110:
python.version: '3.8'
TOXENV: py38-test-deps,py38-test-mindeps,py38-test-deps-pre
HDF5_VERSION: 1.10.6
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_VSVERSION: "15-64"
H5PY_ENFORCE_COVERAGE: yes
py39-hdf5110:
python.version: '3.9'
TOXENV: py39-test-deps,py39-test-mindeps,py39-test-deps-pre
HDF5_VERSION: 1.10.6
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_VSVERSION: "15-64"
H5PY_ENFORCE_COVERAGE: yes
# 64 bit - HDF5 1.12
# Fewer combinations here; test_windows_wheels also tests HDF5 1.12
py38-hdf5112:
python.version: '3.8'
TOXENV: py38-test-deps
HDF5_VERSION: 1.12.0
HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
HDF5_VSVERSION: "15-64"
H5PY_ENFORCE_COVERAGE: yes
maxParallel: 4
steps:
- template: ci/azure-pipelines-steps.yml
parameters:
platform: windows
installer: nuget
shell: cmd
- job: 'test_windows_wheels'
dependsOn: windows_wheels
pool:
vmImage: vs2017-win2016
variables:
H5PY_TEST_CHECK_FILTERS: 1
strategy:
matrix:
py37:
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-mindeps,py37-test-deps-tables
WHL_FILE: h5py*-cp37-*.whl
py38:
python.version: '3.8'
TOXENV: py38-test-deps,py38-test-mindeps,py38-test-deps-pre
WHL_FILE: h5py*-cp38-*.whl
py39:
python.version: '3.9'
TOXENV: py39-test-deps,py39-test-mindeps,py39-test-deps-pre
WHL_FILE: h5py*-cp39-*.whl
steps:
- template: ci/azure-pipelines-test-wheels.yml
parameters:
platform: windows
- job: 'macOS1015'
pool:
vmImage: macOS-10.15
strategy:
matrix:
# -deps : test with default (latest) versions of dependencies
# -mindeps : test with oldest supported version of (python) dependencies
# -deps-pre : test pre-release versions of (python) dependencies)
py37:
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-mindeps
H5PY_ENFORCE_COVERAGE: yes
py38:
python.version: '3.8'
TOXENV: py38-test-deps,py38-test-mindeps,py38-test-deps-pre
H5PY_ENFORCE_COVERAGE: yes
py39:
python.version: '3.9'
TOXENV: py39-test-deps,py39-test-mindeps,py39-test-deps-pre
H5PY_ENFORCE_COVERAGE: yes
# test against newer HDF5
# py37-deps-hdf51103:
# python.version: '3.7'
# TOXENV: py37-test-deps
# HDF5_VERSION: 1.10.3
# HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
# py37-deps-hdf51104:
# python.version: '3.7'
# TOXENV: py37-test-deps
# HDF5_VERSION: 1.10.4
# HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
# py37-deps-hdf51105:
# python.version: '3.7'
# TOXENV: py37-test-deps
# HDF5_VERSION: 1.10.5
# HDF5_DIR: $(HDF5_CACHE_DIR)/$(HDF5_VERSION)
maxParallel: 4
steps:
- template: ci/azure-pipelines-steps.yml
parameters:
platform: macos
installer: brew
shell: unix
- job: 'test_macos_wheels'
dependsOn: macos_wheels
pool:
vmImage: macOS-10.15
variables:
H5PY_TEST_CHECK_FILTERS: 1
strategy:
matrix:
py37:
python.version: '3.7'
TOXENV: py37-test-deps,py37-test-mindeps,py37-test-deps-tables
WHL_FILE: h5py*-cp37-*.whl
py38:
python.version: '3.8'
TOXENV: py38-test-deps,py38-test-mindeps,py38-test-deps-pre
WHL_FILE: h5py*-cp38-*.whl
py39:
python.version: '3.9'
TOXENV: py39-test-deps,py39-test-mindeps,py39-test-deps-pre
WHL_FILE: h5py*-cp39-*.whl
steps:
- template: ci/azure-pipelines-test-wheels.yml
parameters:
platform: macos