forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
71 lines (69 loc) · 2.08 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
# Adapted from https://github.com/pandas-dev/pandas/blob/master/azure-pipelines.yml
jobs:
- template: build_tools/azure/posix.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
matrix:
# Linux environment to test that scikit-learn can be built against
# versions of numpy, scipy with ATLAS that comes with Ubuntu Xenial 16.04
# i.e. numpy 1.11 and scipy 0.17
py35_np_atlas:
DISTRIB: 'ubuntu'
PYTHON_VERSION: '3.5'
SKLEARN_SITE_JOBLIB: '1'
JOBLIB_VERSION: '0.11'
# Linux + Python 3.5 build with OpenBLAS and without SITE_JOBLIB
py35_conda_openblas:
DISTRIB: 'conda'
PYTHON_VERSION: '3.5'
INSTALL_MKL: 'false'
NUMPY_VERSION: '1.11.0'
SCIPY_VERSION: '0.17.0'
CYTHON_VERSION: '*'
PILLOW_VERSION: '4.0.0'
COVERAGE: 'true'
# Linux environment to test the latest available dependencies and MKL.
# It runs tests requiring pandas and PyAMG.
# It also runs with the site joblib instead of the vendored copy of joblib.
pylatest_conda:
DISTRIB: 'conda'
PYTHON_VERSION: '*'
INSTALL_MKL: 'true'
NUMPY_VERSION: '*'
SCIPY_VERSION: '*'
PANDAS_VERSION: '*'
CYTHON_VERSION: '*'
PYAMG_VERSION: '*'
PILLOW_VERSION: '*'
JOBLIB_VERSION: '*'
COVERAGE: 'true'
CHECK_PYTEST_SOFT_DEPENDENCY: 'true'
TEST_DOCSTRINGS: 'true'
SKLEARN_SITE_JOBLIB: '1'
CHECK_WARNINGS: 'true'
- template: build_tools/azure/posix.yml
parameters:
name: macOS
vmImage: xcode9-macos10.13
matrix:
pylatest_conda:
DISTRIB: 'conda'
PYTHON_VERSION: '*'
INSTALL_MKL: 'true'
NUMPY_VERSION: '*'
SCIPY_VERSION: '*'
CYTHON_VERSION: '*'
PILLOW_VERSION: '*'
JOBLIB_VERSION: '*'
COVERAGE: 'true'
- template: build_tools/azure/windows.yml
parameters:
name: Windows
vmImage: vs2017-win2016
matrix:
py37:
CONDA_PY: '3.7'
CHECK_WARNINGS: 'true'
py35:
CONDA_PY: '3.5'