summaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml41
1 files changed, 40 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index ed97d53..788a540 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -1 +1,40 @@
----
+jobs:
+- job: linux
+ pool: {vmImage: 'Ubuntu-16.04'}
+ steps:
+ - task: UsePythonVersion@0
+ - bash: |
+ python -m pip install --upgrade pip
+ pip install cibuildwheel==0.11.1
+ cibuildwheel --output-dir wheelhouse .
+ - task: PublishBuildArtifacts@1
+ inputs: {pathtoPublish: 'wheelhouse'}
+- job: macos
+ pool: {vmImage: 'macOS-10.13'}
+ steps:
+ - task: UsePythonVersion@0
+ - bash: |
+ python -m pip install --upgrade pip
+ pip install cibuildwheel==0.11.1
+ cibuildwheel --output-dir wheelhouse .
+ - task: PublishBuildArtifacts@1
+ inputs: {pathtoPublish: 'wheelhouse'}
+- job: windows
+ pool: {vmImage: 'vs2017-win2016'}
+ steps:
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '2.7', architecture: x86}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '2.7', architecture: x64}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x86}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x64}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x86}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x64}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x86}}
+ - {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x64}}
+ - script: choco install vcpython27 -f -y
+ displayName: Install Visual C++ for Python 2.7
+ - bash: |
+ python -m pip install --upgrade pip
+ pip install cibuildwheel==0.11.1
+ cibuildwheel --output-dir wheelhouse .
+ - task: PublishBuildArtifacts@1
+ inputs: {pathtoPublish: 'wheelhouse'}