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-07-29 18:50:12 +0300
committerDavide Beatrici <git@davidebeatrici.dev>2020-08-02 21:01:58 +0300
commit79f3c188496f9445c123aa5c1e8a7f7fa959487a (patch)
tree511e2e0d412417f1f02513e66ab5e95bafa249c5 /.ci/azure-pipelines/build_linux.bash
parentc64e748e6fa52da37d876012a4405a6328f0c6b4 (diff)
CI(tests): Add --verbose option to ctest
With this option enabled we'll actually be able to see the output of the tested programs which can give hints as to what went wrong.
Diffstat (limited to '.ci/azure-pipelines/build_linux.bash')
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index dc0e72bac..7d4fd464d 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -20,7 +20,7 @@ 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 --build .
-ctest
+ctest --verbose
cmake --install .
wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"