mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
45a465713e
Also had to add new project to redirect CTest output, add separate batch scripts for AppVeyor because it doesn't handle multi-line batch scripts in yaml properly, and other helper scripts.
12 lines
421 B
Batchfile
12 lines
421 B
Batchfile
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%
|
|
)
|