We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a715af1 commit b8f8808Copy full SHA for b8f8808
extra/ci_collect_logs.py
@@ -148,7 +148,7 @@ def process_build_reports():
148
149
first_line = True
150
for board in artifact_boards:
151
- print(f"<tr>", f"<td rowspan='{len(artifact_boards)}'><code>{artifact}</code></td>" if first_line else "")
+ print(f"<tr>", f"<td rowspan='{len(artifact_boards)}'><a href='#{artifact}'><code>{artifact}</code></a></td>" if first_line else "")
152
first_line = False
153
154
board_name = board['board']
@@ -172,7 +172,7 @@ def process_build_reports():
172
continue
173
174
print("\n---\n")
175
- print(f"### `{artifact}` test results:")
+ print(f"<a id='#{artifact}'>\n\n### `{artifact}` test results:\n</a>")
176
177
# Print the test matrix
178
0 commit comments