1freebsd_instance:
2  image: freebsd-12-1-release-amd64
3
4freebsd_task:
5  update_script: pkg update && pkg upgrade -y
6  install_script: pkg install -y git pkgconf gmake qt5-qmake qt5-l10n qt5-buildtools qt5-linguisttools qt5-testlib qt5-core qt5-gui qt5-network qt5-sql qt5-svg qt5-widgets qt5-xml boost-libs opus libsndfile protobuf ice avahi-libdns speech-dispatcher python
7  fetch_submodules_script: git submodule --quiet update --init --recursive
8  build_script:
9  - qmake -recursive CONFIG+="release tests warnings-as-errors no-alsa no-jackaudio no-pulseaudio"
10  - gmake -j $(sysctl -n hw.ncpu)
11  check_script: gmake check
12