ci: move the py27 win32 build from appveyor to azure-pipelines

This commit is contained in:
Christoph Reiter 2019-02-24 15:15:52 +01:00
parent a54e7dbcd4
commit 43b71439fa
2 changed files with 7 additions and 3 deletions

View File

@ -1,8 +1,5 @@
environment:
matrix:
- MSVC_PLATFORM: x86
PYTHON_ROOT: Python27
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- MSVC_PLATFORM: x86
PYTHON_ROOT: Python34
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015

View File

@ -63,6 +63,9 @@ jobs:
Python35-x86:
python.version: '3.5'
python.arch: 'x86'
Python27-x86:
python.version: '2.7'
python.arch: 'x86'
steps:
- task: UsePythonVersion@0
inputs:
@ -71,6 +74,10 @@ jobs:
- script: |
choco install 7zip wget
displayName: Install Dependencies
- script: |
choco install vcpython27
displayName: Install PY2 Dependencies
condition: eq(variables['python.version'], '2.7')
- script: |
call .azure-pipelines\msvc.bat
displayName: Build & Test