Skip to content

Commit 25c6f4e

Browse files
authored
Merge pull request #70 from lazka/ci-windows
Set up CI with Azure Pipelines
2 parents 030c84a + afd8941 commit 25c6f4e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

azure-pipelines.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
jobs:
2+
- job: win32
3+
timeoutInMinutes: 60
4+
strategy:
5+
matrix:
6+
Py36-x86-win2016:
7+
python.version: '3.6'
8+
python.arch: 'x86'
9+
vmImage: vs2017-win2016
10+
Py37-x64-win2016:
11+
python.version: '3.7'
12+
python.arch: 'x64'
13+
vmImage: vs2017-win2016
14+
pool:
15+
vmImage: $(vmImage)
16+
steps:
17+
- task: UsePythonVersion@0
18+
inputs:
19+
versionSpec: '$(python.version)'
20+
architecture: '$(python.arch)'
21+
- script: |
22+
pip install --user -U setuptools pip
23+
displayName: Install Dependencies
24+
- script: |
25+
pip install -e .
26+
displayName: Build
27+
- script: |
28+
python runtests.py
29+
displayName: Run tests

0 commit comments

Comments
 (0)