mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 05:16:10 +01:00
Remove debug prints from batch scripts
This commit is contained in:
parent
12c57cedda
commit
a4fd96fbaa
@ -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%
|
||||
)
|
||||
|
@ -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%
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user