-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
127 lines (123 loc) · 3.86 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
trigger:
- master
- maint/*
pr:
- master
- maint/*
jobs:
- template: ci/azure/linux.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
matrix:
Python35-64bit:
python.version: '3.5'
Python36-64bit:
python.version: '3.6'
Python38-64bit:
python.version: '3.8'
Python37-64bit:
python.version: '3.7'
Python35-64bit + MIN_DEPS:
python.version: '3.5'
DEPENDS: "cython==0.29 numpy==1.12.0 scipy==1.0 nibabel==3.0.0 h5py==2.5.0 nose"
Python37-64bit + MIN_DEPS:
python.version: '3.7'
DEPENDS: "cython==0.29 numpy==1.15.0 scipy==1.1 nibabel==3.0.0 h5py==2.8.0"
Python37-64bit + OPTIONAL_DEPS + COVERAGE:
python.version: '3.7'
EXTRA_DEPENDS: "scikit_learn pandas statsmodels tables scipy"
COVERAGE: "1"
Python37-64bit + VIZ + COVERAGE:
TEST_WITH_XVFB: "1"
COVERAGE: "1"
python.version: '3.7'
MESA_GL_VERSION_OVERRIDE: '3.3'
LIBGL_ALWAYS_INDIRECT: 'y'
EXTRA_DEPENDS: "scikit_learn vtk fury scipy pandas statsmodels tables xvfbwrapper"
Python37-64bit + SDIST:
python.version: '3.7'
INSTALL_TYPE: "sdist"
EXTRA_DEPENDS: "scipy"
Python37-64bit + PIP:
python.version: '3.7'
INSTALL_TYPE: "pip"
DEPENDS: "" # Dependency checking should get all needed dependencies
Python37-64bit + WHEEL:
python.version: '3.7'
INSTALL_TYPE: "wheel"
EXTRA_DEPENDS: "scipy"
Python37-64bit + Requirements:
python.version: '3.7'
INSTALL_TYPE: "requirements"
DEPENDS: ""
CONDA Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit-learn pandas statsmodels pytables scipy"
INSTALL_TYPE: "conda"
CONDA Python37-64bit:
python.version: '3.7'
INSTALL_TYPE: "conda"
CONDA Python36-64bit:
python.version: '3.6'
INSTALL_TYPE: "conda"
- template: ci/azure/osx.yml
parameters:
name: OSX
vmImage: macOS-10.14
matrix:
Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit_learn pandas statsmodels tables scipy"
Python37-64bit:
python.version: '3.7'
Python38-64bit:
python.version: '3.8'
CONDA Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit-learn pandas statsmodels pytables scipy==1.2"
INSTALL_TYPE: "conda"
CONDA Python37-64bit:
python.version: '3.7'
INSTALL_TYPE: "conda"
CONDA Python36-64bit:
python.version: '3.6'
INSTALL_TYPE: "conda"
Python37-64bit + VIZ:
TEST_WITH_XVFB: "1"
python.version: '3.7'
MESA_GL_VERSION_OVERRIDE: '3.3'
LIBGL_ALWAYS_INDIRECT: 'y'
EXTRA_DEPENDS: "scikit_learn vtk fury scipy xvfbwrapper"
- template: ci/azure/windows.yml
parameters:
name: Windows
vmImage: vs2017-win2016
matrix:
Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit_learn pandas statsmodels tables scipy"
# Python38-64bit:
# python.version: '3.8'
Python37-64bit:
python.version: '3.7'
Python36-64bit:
python.version: '3.6'
# Python35-64bit:
# python.version: '3.5'
CONDA Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit-learn pandas statsmodels pytables scipy"
INSTALL_TYPE: "conda"
CONDA Python37-64bit:
python.version: '3.7'
INSTALL_TYPE: "conda"
CONDA Python36-64bit:
python.version: '3.6'
INSTALL_TYPE: "conda"
Python37-64bit + VIZ:
TEST_WITH_XVFB: "1"
python.version: '3.7'
MESA_GL_VERSION_OVERRIDE: '3.3'
LIBGL_ALWAYS_INDIRECT: 'y'
EXTRA_DEPENDS: "scikit_learn vtk fury scipy"