mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-02-14 00:51:40 +00:00

Keeping these up-to-date is just super tedious and they don't really fulfill any purpose these days.
22 lines
847 B
YAML
22 lines
847 B
YAML
# Copyright The Mumble Developers. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file at the root of the
|
|
# Mumble source tree or at <https://www.mumble.info/LICENSE>.
|
|
freebsd_instance:
|
|
image_family: freebsd-14-0
|
|
|
|
freebsd_task:
|
|
pkg_script:
|
|
- pkg update && pkg upgrade -y
|
|
- pkg install -y git ninja pkgconf cmake qt6-base qt6-svg qt6-tools boost-libs libsndfile protobuf ice37 avahi-libdns poco opus
|
|
fetch_submodules_script: git submodule --quiet update --init --recursive
|
|
build_script:
|
|
- mkdir build && cd build
|
|
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_UNITY_BUILD=ON -Dtests=ON -Dsymbols=ON -DCMAKE_CXX_STANDARD=17 ..
|
|
- cmake --build .
|
|
test_script:
|
|
- cd build
|
|
- ctest --output-on-failure
|
|
install_script:
|
|
- cd build
|
|
- cmake --install .
|