forked from giotto-ai/pyflagser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
242 lines (206 loc) · 6.09 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# These jobs test the code and build the wheels and docs.
jobs:
- job: 'manylinux2010'
condition: eq(variables['build_check'], 'true')
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Python36:
arch: x86_64
plat: manylinux2010_x86_64
python_ver: '36'
python.version: '3.6'
Python37:
arch: x86_64
plat: manylinux2010_x86_64
python_ver: '37'
python.version: '3.7'
Python38:
arch: x86_64
plat: manylinux2010_x86_64
python_ver: '38'
python.version: '3.8'
Python39:
arch: x86_64
plat: manylinux2010_x86_64
python_ver: '39'
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
- task: Bash@3
inputs:
filePath: .azure-ci/build_manylinux2010.sh
failOnStderr: false
env:
python_ver: $(python_ver)
displayName: 'Run the docker, install and uninstall dev environment, test with pytest and flake8, build the wheels'
- script: |
python -m pip install --upgrade pip setuptools wheel
displayName: 'Upgrade pip and setuptools, install wheel package'
- script: python -m pip install dist/*.whl
failOnStderr: true
displayName: 'Install the wheels'
- script: |
python -m pip install pytest pytest-cov pytest-timeout pytest-azurepipelines pytest-benchmark flake8 hypothesis
mkdir tmp_test_cov
cd tmp_test_cov
python -m pyflagser.tests --webdl --no-cov --no-coverage-upload
failOnStderr: true
condition: eq(variables['test_wheels'], 'true')
displayName: 'Test the wheels with pytest'
- task: CopyFiles@2
displayName: 'Copy files'
inputs:
contents: 'dist/*'
targetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Create download link'
inputs:
pathToPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'wheel_and_doc'
- job: 'macOS1014'
condition: eq(variables['build_check'], 'true')
pool:
vmImage: 'macOS-10.14'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
- script: |
python -m pip install --upgrade pip setuptools wheel
failOnStderr: true
displayName: 'Upgrade pip and setuptools, install wheel package'
- script: python -m pip install -e ".[tests, doc]"
failOnStderr: true
displayName: 'Install dev environment'
- script: |
flake8
failOnStderr: true
displayName: 'Run flake8'
- script: |
pytest --cov pyflagser --cov-report xml
failOnStderr: true
displayName: 'Test dev install with pytest'
- script: |
pip uninstall -y pyflagser
failOnStderr: true
displayName: 'Uninstall pyflagser dev'
- script: |
python setup.py bdist_wheel
failOnStderr: false
displayName: 'Build the wheels'
- script: |
set -e
python -m pip install twine
twine check dist/*
displayName: 'Check distribution with twine'
- script: python -m pip install dist/*.whl
failOnStderr: true
displayName: 'Install the wheels'
- script: |
mkdir tmp_test_cov
cd tmp_test_cov
python -m pyflagser.tests --webdl --no-cov --no-coverage-upload
failOnStderr: true
condition: eq(variables['test_wheels'], 'true')
displayName: 'Test the wheels with pytest'
- script: |
cd doc/
make html
failOnStderr: true
displayName: 'Build sphinx doc'
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: doc/build
includeRootFolder: true
archiveType: 'zip'
tarCompression: 'gz'
archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip'
replaceExistingArchive: true
displayName: 'Archive doc'
- task: CopyFiles@2
displayName: 'Copy files'
inputs:
contents: 'dist/*'
targetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Create download link'
inputs:
pathToPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'wheel_and_doc'
- job: 'win2016'
condition: eq(variables['build_check'], 'true')
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python36:
python_ver: '36'
python.version: '3.6'
Python37:
python_ver: '37'
python.version: '3.7'
Python38:
python_ver: '38'
python.version: '3.8'
Python39:
python_ver: '39'
python.version: '3.9'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
- script: |
python -m pip install --upgrade pip setuptools wheel
failOnStderr: true
displayName: 'Upgrade pip and setuptools, install wheel package'
- script: |
python -m pip install -e ".[tests, doc]"
failOnStderr: true
displayName: 'Install dev environment'
- script: |
pytest pyflagser --no-cov --no-coverage-upload
failOnStderr: true
displayName: 'Test dev install with pytest'
- script: |
pip uninstall -y pyflagser
failOnStderr: true
displayName: 'Uninstall pyflagser dev'
- bash: |
sed -i $'s/\r$//' README.rst
python setup.py bdist_wheel
failOnStderr: false
displayName: 'Build the wheels'
- bash: python -m pip install dist/*.whl
failOnStderr: true
displayName: 'Install the wheels'
- script: |
mkdir tmp_test_cov
cd tmp_test_cov
python -m pyflagser.tests --webdl --no-cov --no-coverage-upload
failOnStderr: true
condition: eq(variables['test_wheels'], 'true')
displayName: 'Test the wheels with pytest'
- task: CopyFiles@2
displayName: 'Copy files'
inputs:
contents: 'dist/*'
targetFolder: '$(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Create download link'
inputs:
pathToPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'wheel_and_doc'