source:
azure-pipelines.yml
@
c8b52ab
Last change on this file since c8b52ab was f5b8800, checked in by , 6 years ago | |
---|---|
|
|
File size: 527 bytes |
Rev | Line | |
---|---|---|
[0be7f65] | 1 | # configuration file for azure continuous integration |
[46155e50] | 2 | jobs: |
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' | |
[f181953] | 19 | |
20 | - job: macos | |
21 | pool: | |
22 | vmIMage: macOS-10.13 | |
23 | ||
24 | steps: | |
25 | - script: | | |
[07b47b1] | 26 | brew update |
[f5b8800] | 27 | brew install pkg-config |
[07b47b1] | 28 | brew install sox ffmpeg libsndfile lcov |
[f5b8800] | 29 | displayName: 'brew install' |
[07b47b1] | 30 | - script: | |
[f181953] | 31 | make |
32 | displayName: 'make' |
Note: See TracBrowser
for help on using the repository browser.