forked from dipy/dipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
152 lines (145 loc) · 4.62 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
schedules:
- cron: "0 0 * * 1,4" #twice per week
displayName: Weekly midnight build
branches:
include:
- master
trigger:
- master
- maint/*
pr:
- master
- maint/*
jobs:
- template: ci/azure/linux.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
matrix:
Python36-64bit:
python.version: '3.6'
Python37-64bit:
python.version: '3.7'
Python38-64bit:
python.version: '3.8'
Python39-64bit:
python.version: '3.9'
Python36-64bit + MIN_DEPS:
python.version: '3.6'
DEPENDS: "cython==0.29 numpy==1.12.0 scipy==1.0 nibabel==3.0.0 h5py==2.5.0 nose tqdm"
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 tqdm"
Python37-64bit + OPTIONAL_DEPS:
python.version: '3.7'
EXTRA_DEPENDS: "scikit_learn pandas statsmodels tables scipy"
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"
Python37-64bit - PRE:
USE_PRE: 1
python.version: '3.7'
EXTRA_DEPENDS: "scikit_learn scipy statsmodels pandas tables"
- template: ci/azure/osx.yml
parameters:
name: OSX
vmImage: macOS-latest
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'
Python39-64bit:
python.version: '3.9'
# Problem with h5py
# 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"
# TODO: Need to figure out how to allow failure before any activation
# Python37-64bit - PRE:
# USE_PRE: 1
# python.version: '3.7'
# EXTRA_DEPENDS: "scikit_learn scipy statsmodels pandas "
- 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"
Python39-64bit:
python.version: '3.9'
Python38-64bit:
python.version: '3.8'
Python37-64bit:
python.version: '3.7'
Python36-64bit:
python.version: '3.6'
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"
# TODO: Need to figure out how to allow failure before any activation
# Python37-64bit - PRE:
# USE_PRE: 1
# python.version: '3.7'
# EXTRA_DEPENDS: "scikit_learn scipy statsmodels pandas "