Commit 3d11dbc1 authored by Robert Schmidt's avatar Robert Schmidt

Merge remote-tracking branch 'origin/ci-proper-report-cppcheck-version' into integration_2023_w23

parents 96929169 d4255cc8
......@@ -163,7 +163,7 @@ class StaticCodeAnalysis():
xmlStart = False
with open('./cppcheck-'+ variant + '.txt', 'r') as logfile:
for line in logfile:
ret = re.search('Unpacking cppcheck \((?P<version>[0-9\.]+)', str(line))
ret = re.search('cppcheck version="(?P<version>[0-9\.]+)"', str(line))
if ret is not None:
CCR.versions[vId] = ret.group('version')
if re.search('RUN cat cmake_targets/log/cppcheck.xml', str(line)) is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment