aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-05-15 04:33:57 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-05-15 04:33:57 -0400
commit6463fee5c9ed5864eb554ee99ad292e5507d4b55 (patch)
treec8905a81498422b479fb47157eb38716079d0aa6
parentc79400a2839527d0749798637d182b1cb3d84a01 (diff)
downloadexternal_python_setuptools-6463fee5c9ed5864eb554ee99ad292e5507d4b55.tar.gz
external_python_setuptools-6463fee5c9ed5864eb554ee99ad292e5507d4b55.tar.bz2
external_python_setuptools-6463fee5c9ed5864eb554ee99ad292e5507d4b55.zip
Sync azure pipelines config with jaraco/skeleton, adding support for building on macOS and Windows.
-rw-r--r--azure-pipelines.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 0253a770..ee772682 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -11,10 +11,12 @@ trigger:
- '*'
pool:
- vmimage: 'Ubuntu-18.04'
+ vmImage: $(pool_vm_image)
variables:
- group: Azure secrets
+- name: pool_vm_image
+ value: Ubuntu-18.04
stages:
- stage: Test
@@ -23,10 +25,17 @@ stages:
- job: 'Test'
strategy:
matrix:
- Python36:
+ Bionic Python 3.6:
python.version: '3.6'
- Python38:
+ Bionic Python 3.8:
python.version: '3.8'
+ Windows:
+ python.version: '3.8'
+ pool_vm_image: vs2017-win2016
+ MacOS:
+ python.version: '3.8'
+ pool_vm_image: macos-10.15
+
maxParallel: 4
steps: