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 Adam <dev@robert-adam.de>2020-09-11 16:31:26 +0300
committerRobert Adam <dev@robert-adam.de>2020-09-11 16:51:32 +0300
commit25ec34ec15d2539165d63b136cd980f34828a0ff (patch)
tree86717bb5d8d90180984217e837cbc665223be3d5 /.ci/azure-pipelines/build_linux.bash
parent2f1614efa929c57971fb4ad7d043c53fb6fdea33 (diff)
CI: Enable online tests
As the CI does have a working internet connection, it might as well run all tests regardless of whether they require an internet connection or not.
Diffstat (limited to '.ci/azure-pipelines/build_linux.bash')
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index 7d4fd464d..cce70a515 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -18,7 +18,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 -DBUILD_TESTING=ON -Dversion=$VER -Dsymbols=ON -Dqssldiffiehellmanparameters=OFF $BUILD_SOURCESDIRECTORY
+cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=appdir/usr -DBUILD_TESTING=ON -Dversion=$VER -Dsymbols=ON \
+ -Dqssldiffiehellmanparameters=OFF -Donline-tests=ON $BUILD_SOURCESDIRECTORY
cmake --build .
ctest --verbose
cmake --install .