summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2019-06-09 18:13:24 -0400
committerJulian Berman <Julian@GrayVines.com>2019-06-09 18:13:24 -0400
commitc06af7e269d03f90401d4d08f4e7e879d8a9bf37 (patch)
treeb027ce844a837e94a1274816df489989d66a901c
parent0f8622c180a52bcca3f954f0a987bf284a2b806e (diff)
downloadjsonschema-azure.tar.gz
Do... something.azure
-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'}