source: azure-pipelines.yml @ bf3f09b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change on this file since bf3f09b was 6f33badc, checked in by Paul Brossier <piem@piem.org>, 5 years ago

azure-pipelines.yml: also -Werror on mac and linux

  • Property mode set to 100644
File size: 643 bytes
Line 
1#  configuration file for azure continuous integration
2jobs:
3
4- job: linux
5  pool:
6    vmImage: 'Ubuntu 16.04'
7  steps:
8  - script: |
9      make
10    displayName: 'make'
11    env:
12      CFLAGS: -Werror
13
14- job: windows
15  pool:
16    vmIMage: 'VS2017-Win2016'
17  steps:
18  - script: |
19      make
20    displayName: 'make'
21    env:
22      # fail on error
23      CFLAGS: /WX
24
25- job: macos
26  pool:
27    vmIMage: macOS-10.13
28  steps:
29  - script: |
30      brew update
31      brew install pkg-config gnupg
32      brew install sox ffmpeg libsndfile lcov
33    displayName: 'brew install'
34  - script: |
35      make
36    displayName: 'make'
37    env:
38      CFLAGS: -Werror
Note: See TracBrowser for help on using the repository browser.