A link to the result view I assume None of the "buttons" work. I assume it has something to do with passing a special id to the tools.
recordIssues tools: [ gcc(id: 'gcc STM32F103', name: 'gcc STM32F103', pattern: 'buildConsole.txt'),
cppCheck(id: 'cppcheck STM32F103', name: 'cppcheck STM32F103', pattern: 'cppcheck-result*.xml'),
]
If not recorded with special id the button looks like
<div class="task">
<a href="/view/xxxx/cppcheck" class="task-icon-link">
<img src="/static/bfc7a8a8/plugin/warnings-ng/icons/analysis-24x24.png" alt="" style="width: 24px; height: 24px; margin: 2px;">
</a>
<a href="/view/xxxx/cppcheck" class="task-link">
CPPCheck Warnings
</a>
</div>
but with id its generated as
<div class="task">
<a class="task-icon-link">
<img src="/static/bfc7a8a8/plugin/warnings-ng/icons/analysis-24x24.png" alt="" style="width: 24px; height: 24px; margin: 2px;">
</a>
<a class="task-link">
cppcheck STM32F427 Warnings
</a>
</div>
As you can see the complete reference (href) part is missing. |