Skip to content

Commit b7bba4a

Browse files
Merged PR 4915826: Add Azure Pipelines
1 parent 0e691b9 commit b7bba4a

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

azure-pipelines.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This pipeline will just build PulseAudio to be sure we dont break
2+
3+
trigger:
4+
- working
5+
6+
pool:
7+
vmImage: 'ubuntu-latest'
8+
9+
steps:
10+
- checkout: self
11+
12+
- script: sudo apt-get update && sudo apt-get install --no-install-recommends -y
13+
build-essential
14+
autopoint
15+
autoconf
16+
libltdl-dev
17+
libtool
18+
libx11-dev
19+
libx11-xcb-dev
20+
libsndfile1
21+
libcap-dev
22+
libsndfile-dev
23+
pkg-config
24+
gettext
25+
software-properties-common
26+
displayName: 'Install Dependencies'
27+
28+
- script: ./bootstrap.sh
29+
displayName: 'Boostrap'
30+
31+
- script: make
32+
displayName: 'Make'

0 commit comments

Comments
 (0)