Update changelog
[jack2.git] / .cirrus.yml
blob5fe1fd3df4272e53e5f48583bdc1ce3db9105084
1 task:
2   freebsd_instance:
3     matrix:
4       - image_family: freebsd-12-3
5       - image_family: freebsd-13-0
7   environment:
8     CFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
9     CPPFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
10     LDFLAGS: -lreadline -L/usr/local/lib -fstack-protector-strong
11   prepare_script:
12     - mkdir ${HOME}/install
14   matrix:
15     - name: FreeBSD Minimal Build
16       dependencies_script:
17         - pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline expat
18       config_script:
19         - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=no --classic --readline=yes --opus=no --example-tools=no --prefix ${HOME}/install
20     - name: FreeBSD All Options
21       dependencies_script:
22         - pkg install -y pkgconf python3 libsndfile libsamplerate libsysinfo readline alsa-lib dbus expat opus
23       config_script:
24         - python3 ./waf configure --celt=no --sndfile=yes --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --readline=yes --opus=yes --prefix ${HOME}/install
26   build_script:
27     - python3 ./waf
28   install_script:
29     - python3 ./waf install