File tree Expand file tree Collapse file tree 4 files changed +5
-113
lines changed
Expand file tree Collapse file tree 4 files changed +5
-113
lines changed Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff line change 11libraries/Camera/
22libraries/Storage/
3- libraries/WiFi/
43libraries/Zephyr_SDRAM/
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+
13import os
24import sys
35import 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 ():
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments