forked from jackaudio/jack2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
29 lines (26 loc) · 1.11 KB
/
.cirrus.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
task:
freebsd_instance:
matrix:
- image_family: freebsd-12-3
- image_family: freebsd-13-1
environment:
CFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
CPPFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
LDFLAGS: -L/usr/local/lib -fstack-protector-strong
prepare_script:
- mkdir /Install
matrix:
- name: FreeBSD Minimal Build
dependencies_script:
- pkg install -y pkgconf python3 libsamplerate libsysinfo expat
config_script:
- python3 ./waf configure --celt=no --samplerate=yes --alsa=no --classic --opus=no --prefix /Install --pkgconfigdir libdata/pkgconfig
- name: FreeBSD All Options
dependencies_script:
- pkg install -y pkgconf python3 libsamplerate libsysinfo alsa-lib dbus expat opus
config_script:
- python3 ./waf configure --celt=no --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
build_script:
- python3 ./waf
install_script:
- python3 ./waf install