forked from aubio/aubio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
51 lines (47 loc) · 904 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# configuration file for azure continuous integration
jobs:
- job: linux
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
sudo apt install libavformat-dev librubberband-dev
displayName: 'deps'
- script: |
make
displayName: 'make'
env:
CFLAGS: -Werror
- job: linux_nodeps
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
make
displayName: 'make'
env:
CFLAGS: -Werror
- job: windows
pool:
vmImage: 'vs2017-win2016'
steps:
- script: |
make
displayName: 'make'
env:
# fail on error
CFLAGS: /WX
- job: macos
pool:
vmImage: 'macos-latest'
steps:
- script: |
brew update
brew install pkg-config gnupg
brew install sox ffmpeg libsndfile libvorbis flac lcov
displayName: 'brew install'
- script: |
make
displayName: 'make'
env:
CFLAGS: -Werror