appveyor: disable verbosity of MSBuild

(cherry picked from commit e2e82241d182807b154dad5c546d9ef4581eb489)
This commit is contained in:
Azat Khuzhin 2019-01-29 20:58:01 +03:00
parent aee0fcd57c
commit fa193d128f
No known key found for this signature in database
GPG Key ID: B86086848EF8686D

View File

@ -91,7 +91,7 @@ build_script:
md build-cmake 2> $null
cd build-cmake
cmake -G "Visual Studio 15 2017 Win64" .. $env:EVENT_CMAKE_OPTIONS
cmake --build . -j $env:EVENT_BUILD_PARALLEL
cmake --build . -j $env:EVENT_BUILD_PARALLEL -- /nologo /verbosity:minimal
ctest --output-on-failure -j $env:EVENT_TESTS_PARALLEL
}