From cbeb86c583e098a26fb597c2daa2d1704b55e97e Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@gmail.com> Date: Sat, 8 Dec 2018 09:36:42 +0000 Subject: [PATCH] Use less verbose msbuild output This more closely mimics Ninja --- buildconfig/Jenkins/buildscript.bat | 4 ++-- buildconfig/Jenkins/systemtests.bat | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/buildconfig/Jenkins/buildscript.bat b/buildconfig/Jenkins/buildscript.bat index e97d04e056c..d3e2ff82c5a 100755 --- a/buildconfig/Jenkins/buildscript.bat +++ b/buildconfig/Jenkins/buildscript.bat @@ -157,7 +157,7 @@ if ERRORLEVEL 1 exit /B %ERRORLEVEL% :: Build step ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: call %BUILD_DIR%\buildenv.bat -msbuild /nologo /m:%BUILD_THREADS% /nr:false /p:Configuration=%BUILD_CONFIG% /p:UseEnv=true Mantid.sln +msbuild /nologo /m:%BUILD_THREADS% /nr:false /p:Configuration=%BUILD_CONFIG% /p:UseEnv=true /verbosity:minimal Mantid.sln if ERRORLEVEL 1 exit /B %ERRORLEVEL% ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: @@ -194,7 +194,7 @@ echo Note: not running doc-test target as it currently takes too long if "%BUILDPKG%" == "yes" ( :: Build offline documentation - msbuild /nologo /nr:false /p:Configuration=%BUILD_CONFIG% /p:UseEnv=true docs/docs-qthelp.vcxproj + msbuild /nologo /nr:false /p:Configuration=%BUILD_CONFIG% /p:UseEnv=true /verbosity:minimal docs/docs-qthelp.vcxproj :: Ignore errors as the exit code of msbuild is wrong here. :: It always marks the build as a failure even though MantidPlot exits correctly echo Building package diff --git a/buildconfig/Jenkins/systemtests.bat b/buildconfig/Jenkins/systemtests.bat index dec043b7322..5003d53a8d7 100755 --- a/buildconfig/Jenkins/systemtests.bat +++ b/buildconfig/Jenkins/systemtests.bat @@ -60,9 +60,9 @@ if not EXIST %WORKSPACE%\build\CMakeCache.txt ( ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Build step ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -msbuild /nologo /nr:false /p:Configuration=Release StandardTestData.vcxproj +msbuild /nologo /nr:false /p:Configuration=Release /verbosity:minimal StandardTestData.vcxproj if ERRORLEVEL 1 exit /b %ERRORLEVEL% -msbuild /nologo /nr:false /p:Configuration=Release SystemTestData.vcxproj +msbuild /nologo /nr:false /p:Configuration=Release /verbosity:minimal SystemTestData.vcxproj if ERRORLEVEL 1 exit /b %ERRORLEVEL% ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -- GitLab