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-10-24 15:44:35 +0300
committerRobert <krzmbrzl@gmail.com>2020-10-24 15:47:17 +0300
commit3a8fe67ff066034fe715f4f1a4229842c0a7de0b (patch)
treee3c59b6145218079e3bed2f508c76f68b003188b /.ci/azure-pipelines/build_linux.bash
parent54a1918cd4d81209e19f49ec801478219d2ba225 (diff)
CI: Use diffie-hellman-parameters
They have been disabled as the CI used to be run on Ubuntu 16.04 which shipped a Qt version that didn't support them. Now that the CI is running Ubuntu 18.04 however, there is no need anymore for disabling them.
Diffstat (limited to '.ci/azure-pipelines/build_linux.bash')
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash3
1 files changed, 1 insertions, 2 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index fd52ddcf7..2af11f9bf 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -17,9 +17,8 @@ VER=$(python scripts/mumble-version.py)
cd $BUILD_BINARIESDIRECTORY
-# QSslDiffieHellmanParameters was introduced in Qt 5.8, Ubuntu 16.04 has 5.5.
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=appdir/usr -Dtests=ON Donline-tests=ON -Dversion=$VER -Dsymbols=ON \
- -Dqssldiffiehellmanparameters=OFF -Donline-tests=ON -Dgrpc=ON $BUILD_SOURCESDIRECTORY
+ -Donline-tests=ON -Dgrpc=ON $BUILD_SOURCESDIRECTORY
cmake --build .
ctest --verbose