Remove debug prints from batch scripts

This commit is contained in:
Martin Hořeňovský 2017-12-03 14:14:58 +01:00
parent 12c57cedda
commit a4fd96fbaa
2 changed files with 0 additions and 4 deletions

View File

@ -3,13 +3,11 @@
@REM # 2) Regenerate single header include for examples
@REM # 3) Enable building examples
if "%CONFIGURATION%"=="Debug" (
echo "buildConfiguration.bat thinks this is a Debug build"
python scripts\generateSingleHeader.py
cmake -Hmisc -Bbuild-misc -A%PLATFORM%
cmake --build build-misc
cmake -H. -BBuild -A%PLATFORM% -DUSE_WMAIN=%wmain% -DBUILD_EXAMPLES=ON -DMEMORYCHECK_COMMAND=build-misc\Debug\CoverageHelper.exe -DMEMORYCHECK_COMMAND_OPTIONS=--sep-- -DMEMORYCHECK_TYPE=Valgrind
)
if "%CONFIGURATION%"=="Release" (
echo "buildConfiguration.bat thinks this is a Release build"
cmake -H. -BBuild -A%PLATFORM% -DUSE_WMAIN=%wmain%
)

View File

@ -1,11 +1,9 @@
cd Build
if "%CONFIGURATION%"=="Debug" (
echo "appveyorTestScript.bat thinks this is a Debug build"
ctest -j 2 -C %CONFIGURATION% -D ExperimentalMemCheck
python ..\misc\appveyorMergeCoverageScript.py
codecov --root .. --no-color --disable gcov -f cobertura.xml -t %CODECOV_TOKEN%
)
if "%CONFIGURATION%"=="Release" (
echo "appveyorTestScript.bat thinks this is a Release build"
ctest -j 2 -C %CONFIGURATION%
)