summaryrefslogtreecommitdiff
path: root/misc/appveyorTestRunScript.bat
diff options
context:
space:
mode:
Diffstat (limited to 'misc/appveyorTestRunScript.bat')
-rw-r--r--misc/appveyorTestRunScript.bat15
1 files changed, 0 insertions, 15 deletions
diff --git a/misc/appveyorTestRunScript.bat b/misc/appveyorTestRunScript.bat
deleted file mode 100644
index c129d99e..00000000
--- a/misc/appveyorTestRunScript.bat
+++ /dev/null
@@ -1,15 +0,0 @@
-SETLOCAL EnableDelayedExpansion
-
-cd Build
-if "%CONFIGURATION%"=="Debug" (
- if "%coverage%"=="1" (
- ctest -j 2 -C %CONFIGURATION% -D ExperimentalMemCheck || exit /b !ERRORLEVEL!
- python ..\misc\appveyorMergeCoverageScript.py || exit /b !ERRORLEVEL!
- codecov --root .. --no-color --disable gcov -f cobertura.xml -t %CODECOV_TOKEN% || exit /b !ERRORLEVEL!
- ) else (
- ctest -j 2 -C %CONFIGURATION% || exit /b !ERRORLEVEL!
- )
-)
-if "%CONFIGURATION%"=="Release" (
- ctest -j 2 -C %CONFIGURATION% || exit /b !ERRORLEVEL!
-)