ref: 66e82657ef5a40dde58d77a4a69a1b24116d7f9e
dir: /azure-pipelines.yml/
# configuration file for azure continuous integration jobs: - job: linux pool: vmImage: 'ubuntu-16.04' steps: - script: | make displayName: 'make' env: CFLAGS: -Werror - job: windows pool: vmImage: 'vs2017-win2016' steps: - script: | make displayName: 'make' env: # fail on error CFLAGS: /WX - job: macos pool: vmImage: 'macos-latest' steps: - script: | brew update brew install pkg-config gnupg brew install sox ffmpeg libsndfile lcov displayName: 'brew install' - script: | make displayName: 'make' env: CFLAGS: -Werror