From de0fdc85a2c451e5fca4f1e41bebd6d58e53495d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 2 Aug 2023 10:43:06 +0200 Subject: [PATCH] donate-cpu-server.py: adjusted head information summary name / added `internalError` to overview (#5283) --- tools/donate-cpu-server.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/donate-cpu-server.py b/tools/donate-cpu-server.py index 21ca925a2f0..40fc527a942 100755 --- a/tools/donate-cpu-server.py +++ b/tools/donate-cpu-server.py @@ -26,7 +26,7 @@ # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -SERVER_VERSION = "1.3.40" +SERVER_VERSION = "1.3.41" OLD_VERSION = '2.11' @@ -85,7 +85,7 @@ def overviewReport() -> str: html += 'Stale report
\n' html += 'Diff report
\n' html += 'HEAD report
\n' - html += 'HEAD (info) report
\n' + html += 'HEAD (information) report
\n' html += 'Latest results
\n' html += 'Time report (improved)
\n' html += 'Time report (regressed) - packages.txt
\n' @@ -115,6 +115,7 @@ def overviewReport() -> str: html += '
\n' html += 'Important errors:
\n' html += 'cppcheckError
\n' + html += 'internalError
\n' html += 'internalAstError
\n' html += 'syntaxError
\n' html += 'DacaWrongData
\n' @@ -624,7 +625,7 @@ def summaryReport(resultsPath: str, name: str, prefix: str, marker: str) -> str: outToday[messageId] += 1 html = '\n' - html += 'HEAD report\n' + html += '{} report\n'.format(name) html += '

HEAD report

\n' html += '

Uploaded today

' html += summaryReportFromDict(outToday, prefix, 'today') @@ -639,7 +640,7 @@ def headReport(resultsPath: str) -> str: def infoReport(resultsPath: str) -> str: - return summaryReport(resultsPath, 'HEAD (info)', 'headinfo', INFO_MARKER) + return summaryReport(resultsPath, 'HEAD (information)', 'headinfo', INFO_MARKER) def messageIdReport(resultPath: str, marker: str, messageId: str, query_params: dict) -> str: