source: azure-pipelines.yml @ 63a14de

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

azure-pipelines.yml: also install gnupg

  • Property mode set to 100644
File size: 533 bytes
Line 
1#  configuration file for azure continuous integration
2jobs:
3- job: linux
4  pool:
5    vmImage: 'Ubuntu 16.04'
6
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'
19
20- job: macos
21  pool:
22    vmIMage: macOS-10.13
23
24  steps:
25  - script: |
26      brew update
27      brew install pkg-config gnupg
28      brew install sox ffmpeg libsndfile lcov
29    displayName: 'brew install'
30  - script: |
31      make
32    displayName: 'make'
Note: See TracBrowser for help on using the repository browser.