-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
88 lines (77 loc) · 1.47 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
# from matplotlib's azure setup
schedules:
- cron: "0 0 * * 4"
displayName: Weekly build
branches:
include:
- releases/*
always: true
trigger:
tags:
include:
- '*'
branches:
include:
- '*'
variables:
PIP_CACHE_DIR: $(Pipeline.Workspace)/cache/pip
jobs:
- job: 'static_checks'
pool:
vmImage: ubuntu-20.04
variables:
TOXENV: flake8,pylint,docs,check-manifest,checkreadme
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.8'
architecture: 'x64'
- script: |
pip install tox
displayName: Install tox
- script: |
tox
displayName: tox
- job: 'ubuntu'
pool:
vmImage: ubuntu-20.04
strategy:
matrix:
py36:
python.version: '3.6'
TOXENV: py36
py37:
python.version: '3.7'
TOXENV: py37
py38:
python.version: '3.8'
TOXENV: py38
py39:
python.version: '3.9'
TOXENV: py39
maxParallel: 4
steps:
- template: ci/azure-pipelines-steps.yml
parameters:
platform: linux
#- job: 'macOS1015'
# pool:
# vmImage: macOS-10.15
# strategy:
# matrix:
# py37:
# python.version: '3.7'
# TOXENV: py37
# py38:
# python.version: '3.8'
# TOXENV: py38
# py39:
# python.version: '3.9'
# TOXENV: py39
# maxParallel: 4
#
# steps:
# - template: ci/azure-pipelines-steps.yml
# parameters:
# platform: macos
#