source:
azure-pipelines.yml
@
0629356
Last change on this file since 0629356 was dbed3ea, checked in by , 6 years ago | |
---|---|
|
|
File size: 582 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' | |
[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.