ref: f0ce8aa38a9a315283eab3f2244fb0cbfc4bca08
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'
env:
# fail on error
CFLAGS: /WX
- job: macos
pool:
vmIMage: macOS-10.13
steps:
- script: |
brew update
brew install pkg-config gnupg
brew install sox ffmpeg libsndfile lcov
displayName: 'brew install'
- script: |
make
displayName: 'make'