-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathazure-pipelines.yml
67 lines (61 loc) · 1.2 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
variables:
pytest_extra_flags: ''
jobs:
- job: Linux
strategy:
matrix:
py35:
conda_env: py35
py36-min:
conda_env: py36-min
py36:
conda_env: py36
py37:
conda_env: py37
py36-xarray-dev:
conda_env: py36-xarray-dev
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/azure/unit-tests.yml
- job: MacOSX
strategy:
matrix:
py36:
conda_env: py36
pool:
vmImage: 'macOS-10.13'
steps:
- template: ci/azure/unit-tests.yml
- job: Windows
strategy:
matrix:
py37:
conda_env: py37
pool:
vmImage: 'vs2017-win2016'
steps:
- template: ci/azure/unit-tests.yml
- job: CodeChecks
variables:
conda_env: py37
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/azure/install.yml
- bash: |
source activate aospy-tests
flake8
displayName: flake8 lint checks
- job: Docs
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/azure/install.yml
parameters:
env_file: doc/environment.yml
- bash: |
source activate aospy-tests
cd doc
sphinx-build -n -j auto -b html -d _build/doctrees . _build/html
displayName: Build HTML docs