2024-09-30 16:06:20 +00:00
|
|
|
# Copyright The Mumble Developers. All rights reserved.
|
2021-03-01 17:01:11 +00:00
|
|
|
# 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>.
|
2019-03-29 23:15:12 +00:00
|
|
|
freebsd_instance:
|
2024-07-19 14:41:19 +00:00
|
|
|
image_family: freebsd-14-0
|
2019-03-29 23:15:12 +00:00
|
|
|
|
|
|
|
freebsd_task:
|
2020-06-09 06:03:19 +00:00
|
|
|
pkg_script:
|
|
|
|
- pkg update && pkg upgrade -y
|
2024-09-17 00:29:31 +00:00
|
|
|
- pkg install -y git ninja pkgconf cmake qt6-base qt6-svg qt6-tools boost-libs libsndfile protobuf ice37 avahi-libdns poco opus
|
2019-03-29 23:15:12 +00:00
|
|
|
fetch_submodules_script: git submodule --quiet update --init --recursive
|
|
|
|
build_script:
|
2020-06-09 06:03:19 +00:00
|
|
|
- mkdir build && cd build
|
2024-01-21 08:53:44 +00:00
|
|
|
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_UNITY_BUILD=ON -Dtests=ON -Dsymbols=ON -DCMAKE_CXX_STANDARD=17 ..
|
2020-06-09 06:03:19 +00:00
|
|
|
- cmake --build .
|
|
|
|
test_script:
|
|
|
|
- cd build
|
2021-12-06 12:11:09 +00:00
|
|
|
- ctest --output-on-failure
|
2020-06-09 06:03:19 +00:00
|
|
|
install_script:
|
|
|
|
- cd build
|
|
|
|
- cmake --install .
|