我可以将Visual Leak Detector与TeamCity集成吗?如果是,怎么样?
答案 0 :(得分:0)
解析其泄漏报告。
FOR /f "tokens=*" %%F IN ('dir /B *_memLeak.txt') DO (
findstr "/C:No memory leaks detected." "%%F"
if ERRORLEVEL 1 (
echo ##teamcity[buildProblem description='Leaks in %%~nxF']
)
)