forked from explosion/thinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
107 lines (95 loc) · 2.84 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
trigger:
batch: true
branches:
include:
- '*'
paths:
exclude:
- 'website/*'
- '*.md'
pr:
paths:
exclude:
- 'website/*'
- '*.md'
jobs:
- job: 'Test'
variables:
NOTEBOOK_KERNEL: "thinc-notebook-tests"
strategy:
matrix:
Python36Windows:
imageName: 'windows-2019'
python.version: '3.6'
Python37Mac:
imageName: 'macos-10.15'
python.version: '3.7'
Python38Linux:
imageName: 'ubuntu-latest'
python.version: '3.8'
Python39Windows:
imageName: 'windows-latest'
python.version: '3.9'
Python310Linux:
imageName: 'ubuntu-latest'
python.version: '3.10'
Python310Windows:
imageName: 'windows-latest'
python.version: '3.10'
Python310Mac:
imageName: 'macos-latest'
python.version: '3.10'
maxParallel: 4
pool:
vmImage: $(imageName)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
python setup.py build_ext --inplace
python setup.py sdist --formats=gztar
displayName: 'Build sdist'
- script: |
python -m pip install mypy==0.910
python -m mypy thinc
displayName: 'Run mypy'
- task: DeleteFiles@1
inputs:
contents: 'thinc'
displayName: 'Delete source directory'
- script: |
python -m pip freeze
pip freeze --exclude pywin32 > installed.txt
pip uninstall -y -r installed.txt
displayName: 'Uninstall all packages'
- bash: |
SDIST=$(python -c "import os;print(os.listdir('./dist')[-1])" 2>&1)
PIP_CONSTRAINT="build-constraints.txt" pip install dist/$SDIST
displayName: 'Install from sdist'
- script: |
pip install -r requirements.txt
pip install "tensorflow~=2.5.0"
pip install "mxnet; sys_platform != 'win32'"
pip install "torch==1.9.0+cpu" -f https://download.pytorch.org/whl/torch_stable.html
pip install ipykernel pydot graphviz
python -m ipykernel install --name thinc-notebook-tests --user
displayName: 'Install test dependencies'
- script: |
python -m pytest --pyargs thinc --cov=thinc --cov-report=term
displayName: 'Run tests'
- script: |
pip uninstall -y tensorflow
pip install thinc-apple-ops
python -m pytest --pyargs thinc_apple_ops
displayName: 'Run tests for thinc-apple-ops'
condition: and(startsWith(variables['imageName'], 'macos'), eq(variables['python.version'], '3.9'))
- script: |
python -m pytest --pyargs thinc
displayName: 'Run tests with thinc-apple-ops'
condition: and(startsWith(variables['imageName'], 'macos'), eq(variables['python.version'], '3.9'))