2019-02-08 17:04:06 +00:00
|
|
|
|
|
|
|
task:
|
2019-10-06 08:24:56 +00:00
|
|
|
name: FreeBSD
|
|
|
|
freebsd_instance:
|
|
|
|
matrix:
|
2020-10-20 18:36:49 +00:00
|
|
|
image_family: freebsd-11-4
|
2021-02-27 15:26:56 +00:00
|
|
|
image_family: freebsd-12-2
|
|
|
|
image_family: freebsd-13-0
|
2019-10-06 08:24:56 +00:00
|
|
|
|
2020-03-05 15:28:54 +00:00
|
|
|
install_script: pwd && ls -la && pkg update --force && pkg install -y cmake glib alsa-lib ladspa portaudio pulseaudio pkgconf sdl2
|
2019-10-06 08:24:56 +00:00
|
|
|
|
2020-02-02 14:45:44 +00:00
|
|
|
compile_script: pwd && ls -la && mkdir $HOME/fluidsynth_install/ && mkdir build && cd build && cmake -Werror=dev -DCMAKE_INSTALL_PREFIX=$HOME/fluidsynth_install -Denable-portaudio=1 -Denable-ladspa=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=0 -DNO_GUI=1 .. && make -j4 && make check && make install
|
2019-02-08 17:04:06 +00:00
|
|
|
|