Skip to content
Snippets Groups Projects
Commit cbeb86c5 authored by Martyn Gigg's avatar Martyn Gigg
Browse files

Use less verbose msbuild output

This more closely mimics Ninja
parent cb9e045e
No related branches found
No related tags found
No related merge requests found
...@@ -157,7 +157,7 @@ if ERRORLEVEL 1 exit /B %ERRORLEVEL% ...@@ -157,7 +157,7 @@ if ERRORLEVEL 1 exit /B %ERRORLEVEL%
:: Build step :: Build step
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
call %BUILD_DIR%\buildenv.bat 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% if ERRORLEVEL 1 exit /B %ERRORLEVEL%
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
...@@ -194,7 +194,7 @@ echo Note: not running doc-test target as it currently takes too long ...@@ -194,7 +194,7 @@ echo Note: not running doc-test target as it currently takes too long
if "%BUILDPKG%" == "yes" ( if "%BUILDPKG%" == "yes" (
:: Build offline documentation :: 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. :: Ignore errors as the exit code of msbuild is wrong here.
:: It always marks the build as a failure even though MantidPlot exits correctly :: It always marks the build as a failure even though MantidPlot exits correctly
echo Building package echo Building package
......
...@@ -60,9 +60,9 @@ if not EXIST %WORKSPACE%\build\CMakeCache.txt ( ...@@ -60,9 +60,9 @@ if not EXIST %WORKSPACE%\build\CMakeCache.txt (
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Build step :: 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% 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% if ERRORLEVEL 1 exit /b %ERRORLEVEL%
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment