diff --git a/buildconfig/Jenkins/buildscript.bat b/buildconfig/Jenkins/buildscript.bat index e97d04e056cdc0f1c4efb68672ce14dd4f25de87..d3e2ff82c5a9b283585f27f7007ea67f33aa57fe 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 dec043b732225a2cae65508bd312008c1fc7a1f2..5003d53a8d7ca286e56eeb86406cb77edbd6262c 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% :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::