Skip to content

Commit ada0b2f

Browse files
committed
step
1 parent 12a697a commit ada0b2f

File tree

4 files changed

+5
-113
lines changed

4 files changed

+5
-113
lines changed

.github/workflows/package_core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289
pattern: test-report-*
290290
merge-multiple: true
291291

292-
- run: extra/ci_collect_logs.sh > $GITHUB_STEP_SUMMARY
292+
- run: extra/ci_collect_logs.py > $GITHUB_STEP_SUMMARY
293293

294294
# - name: Clean up intermediate artifacts
295295
# uses: geekyeggo/[email protected]

extra/artifacts/zephyr_contrib.exc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
libraries/Camera/
22
libraries/Storage/
3-
libraries/WiFi/
43
libraries/Zephyr_SDRAM/

extra/ci_collect_logs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import os
24
import sys
35
import json
@@ -163,13 +165,13 @@ def process_build_reports():
163165
print("</table>\n")
164166

165167
for artifact in sorted(list(artifacts), reverse=True):
166-
167168
artifact_boards = [ item for item in ALL_BOARD_DATA
168169
if item['artifact'] == artifact and BOARD_SUMMARY[item['board']]['icon'] != ":fire:" ]
169170

170171
if not artifact_boards:
171172
continue
172173

174+
print("\n---\n")
173175
print(f"### `{artifact}` test results:")
174176

175177
# Print the test matrix
@@ -211,7 +213,7 @@ def process_build_reports():
211213
print(f"<tr><td>{sketch_icon}</td><td><code>{example_name(sketch_name)}</code></td>{row_data}</tr>")
212214
print("</table>\n")
213215

214-
print(f"<details><summary><b>Error and warning logs for <code>{artifact}</code></b></summary>")
216+
print(f"<details><summary><b>Error and warning logs for <code>{artifact}</code></b></summary>\n")
215217
print("<table>")
216218
print("<tr><th>Sketch</th><th>Build Details</th></tr>")
217219
for sketch_name, board_results in artifact_matrix.items():

extra/ci_collect_logs.sh

Lines changed: 0 additions & 109 deletions
This file was deleted.

0 commit comments

Comments
 (0)