From 65f2942d17c089f6398626e7078fa8264fafa4c4 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 6 May 2024 16:27:18 +0200 Subject: [PATCH] Set Windows build to quiet The normal flag generates 290 megabytes of log output for a regular build. Setting it to quiet will reduce this and still print errors. --- scripts/ci/windows-build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/windows-build.bat b/scripts/ci/windows-build.bat index 714f19387..71c9bfc71 100644 --- a/scripts/ci/windows-build.bat +++ b/scripts/ci/windows-build.bat @@ -21,7 +21,7 @@ msbuild OSRM.sln ^ /p:BuildInParallel=true ^ /m:%NUMBER_OF_PROCESSORS% ^ /toolsversion:Current ^ -/clp:Verbosity=normal ^ +/clp:Verbosity=quiet ^ /nologo IF %ERRORLEVEL% NEQ 0 GOTO ERROR