Merge pull request #1595 from bitwiseman/azure-macos

Add MacOS
This commit is contained in:
Liam Newman 2018-11-24 01:10:00 -08:00 committed by GitHub
commit e31f5a290e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,4 +81,35 @@ jobs:
targetType: 'inline'
script: 'make ci'
- job: 'MacOS'
pool:
vmImage: 'macOS-10.13'
strategy:
matrix:
Python27_Node6:
python.version: '2.7'
node_version: 6.x
Python37_Node11:
python.version: '3.7'
node_version: 11.x
maxParallel: 6
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- task: Bash@3
inputs:
targetType: 'inline'
script: 'npm i npm --no-save'
- task: Bash@3
inputs:
targetType: 'inline'
script: 'make ci'