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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert <krzmbrzl@gmail.com>2020-09-28 09:34:42 +0300
committerRobert <krzmbrzl@gmail.com>2020-10-24 15:47:17 +0300
commit54a1918cd4d81209e19f49ec801478219d2ba225 (patch)
tree9954534dc1439ff0e01cf6beab49026106170d07 /.cirrus.yml
parent767b29d69c1c9f651c106a4188f75347777bc71b (diff)
CI: Enable gRPC support
In order to make sure we don't break things, we should include gRPC in the built feature set on our CI.
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index ad62a6dbb..7045b5158 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -4,12 +4,12 @@ freebsd_instance:
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
+ - 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 ..
+ - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -Dtests=ON -Dsymbols=ON -Dtranslations=OFF -Dgrpc=ON ..
- cmake --build .
test_script:
- cd build