ref: f181953d47a23be48367c3db94562e61fc3c77ed
dir: /azure-pipelines.yml/
# configuration file for azure continuous integration
jobs:
- job: linux
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: |
make
displayName: 'make'
- job: windows
pool:
vmIMage: 'VS2017-Win2016'
steps:
- script: |
make
displayName: 'make'
- job: macos
pool:
vmIMage: macOS-10.13
steps:
- script: |
make
displayName: 'make'