renovate/azure-pipelines.yml
2019-08-07 09:20:46 +03:00

57 lines
1.1 KiB
YAML

trigger:
batch: true
branches:
include:
- 'master'
pr:
autoCancel: true
branches:
include:
- '*'
variables:
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
CI: true
jobs:
- job: 'Windows'
strategy:
matrix:
Node10 Py3.7:
nodeVersion: '10.x'
pythonVersion: '3.7'
Node12 Py3.7:
nodeVersion: '12.x'
pythonVersion: '3.7'
pool:
vmImage: vs2017-win2016
steps:
- script: |
git config --global core.autocrlf false
git config --global core.symlinks true
displayName: 'Preserve LF endings and symbolic links on check out'
- template: .azure/steps.yml
- job: 'Linux'
strategy:
matrix:
Node10 Py3.7:
nodeVersion: '10.x'
pythonVersion: '3.7'
pool:
vmImage: ubuntu-16.04
steps:
- template: .azure/steps.yml
- job: 'MacOS'
strategy:
matrix:
Node10 Py3.7:
nodeVersion: '10.x'
pythonVersion: '3.7'
pool:
vmImage: macOS-10.14
steps:
- template: .azure/steps.yml