File: .cirrus.yml

package info (click to toggle)
fluidsynth 2.1.7-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,052 kB
  • sloc: ansic: 39,171; xml: 706; cpp: 151; sh: 46; makefile: 21
file content (13 lines) | stat: -rw-r--r-- 670 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13

task:
    name: FreeBSD
    freebsd_instance:
        matrix:
            # There isn't a stable 13.0 image yet (2019-09)
            image_family: freebsd-13-0-snap
            image_family: freebsd-12-1

    install_script: pwd && ls -la && pkg update --force && pkg install -y cmake glib alsa-lib ladspa portaudio pulseaudio pkgconf sdl2
    
    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