source: azure-pipelines.yml @ dbed3ea

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

azure-pipelines.yml: fail on msvc error

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