Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.cirrus.yml - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b55990f38c3cff05c48dc0f112fdda3804a1a030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
freebsd_instance:
  image: freebsd-12-2-release-amd64

freebsd_task:
  pkg_script:
  - pkg update && pkg upgrade -y
  - pkg install -y git ninja pkgconf cmake qt5-buildtools qt5-qmake qt5-linguisttools qt5-concurrent qt5-network qt5-xml qt5-sql qt5-svg qt5-testlib boost-libs libsndfile protobuf ice avahi-libdns grpc
  fetch_submodules_script: git submodule --quiet update --init --recursive
  build_script:
  - mkdir build && cd build
  # We disable translations because of a critical issue in "lupdate": it's very slow and keeps CPU usage at 100%.
  - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -Dtests=ON -Dsymbols=ON -Dtranslations=OFF -Dgrpc=ON ..
  - cmake --build .
  test_script:
  - cd build
  - ctest
  install_script:
  - cd build
  - cmake --install .