2019-09-21 08:40:42 +00:00
|
|
|
# Starter pipeline
|
|
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
|
|
# Add steps that build, run tests, deploy, and more:
|
|
|
|
# https://aka.ms/yaml
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
- master
|
|
|
|
|
2019-09-21 09:05:57 +00:00
|
|
|
jobs:
|
|
|
|
- job: Linux
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- template: ci/test.yml # Template reference
|
|
|
|
|
|
|
|
# - job: macOS
|
|
|
|
# pool:
|
|
|
|
# vmImage: 'macOS-10.13'
|
|
|
|
# steps:
|
|
|
|
# - template: templates/npm-steps.yml # Template reference
|
|
|
|
#
|
|
|
|
# - job: Windows
|
|
|
|
# pool:
|
|
|
|
# vmImage: 'vs2017-win2016'
|
|
|
|
# steps:
|
|
|
|
# - script: echo This script runs before the template's steps, only on Windows.
|
|
|
|
# - template: templates/npm-steps.yml # Template reference
|
|
|
|
# - script: echo This step runs after the template's steps.
|