source: azure-pipelines.yml @ b5c64f5

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

[ci] fix azure vmImage field

  • Property mode set to 100644
File size: 645 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.