File tree Expand file tree Collapse file tree 5 files changed +12
-13
lines changed
arduino_opta_stm32h747xx_m7
arduino_portenta_c33_r7fa6m5bh3cfc
arduino_portenta_h7_stm32h747xx_m7 Expand file tree Collapse file tree 5 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ jobs:
305305 needs :
306306 - build-env
307307 - package-core
308- - test-core
308+ - collect-logs
309309 steps :
310310 - name : Notify failure
311311 run : exit 1
@@ -317,7 +317,7 @@ jobs:
317317 needs :
318318 - build-env
319319 - package-core
320- - test-core
320+ - collect-logs
321321 environment : production
322322 permissions :
323323 id-token : write
@@ -347,7 +347,7 @@ jobs:
347347 needs :
348348 - build-env
349349 - package-core
350- - test-core
350+ - collect-logs
351351 env :
352352 CORE_TAG : ${{ needs.build-env.outputs.CORE_TAG }}
353353 CORE_HASH : ${{ needs.build-env.outputs.CORE_HASH }}
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ def process_build_reports():
169169 artifacts = set (item ['artifact' ] for item in ALL_BOARD_DATA )
170170
171171 # Print the recap table
172- print ("<table>\n <tr><th>Artifact</th><th>Board</th><th>Status</th><th>Passed </th><th>Warnings</th><th>Errors</th></tr>" )
172+ print ("<table>\n <tr><th>Artifact</th><th>Board</th><th>Status</th><th>Tests </th><th>Warnings</th><th>Errors</th></tr>" )
173173
174174 for artifact in sorted (list (artifacts ), reverse = True ):
175175 artifact_boards = [ item ['board' ] for item in ALL_BOARD_DATA if item ['artifact' ] == artifact ]
@@ -192,13 +192,12 @@ def process_build_reports():
192192 if status == FAILURE :
193193 print (f"<td colspan=3>{ TEST_MATRIX ['CI test' ][board ]['issues' ][0 ]} </td></tr>" )
194194 else :
195- passed = summary ['tests' ] - summary ['errors' ]
196- passed_str = passed or "-"
195+ tests_str = summary ['tests' ] or "-"
197196 warnings_str = summary ['warnings' ] or "-"
198197 errors_str = f"<b>{ summary ['errors' ]} </b>" if summary ['errors' ] else "-"
199198 if summary ['expected-errors' ]:
200199 errors_str += f" (+{ summary ['expected-errors' ]} *)"
201- print (f"<td align='right'>{ passed_str } </td><td align='right'>{ warnings_str } </td><td align='right'>{ errors_str } </td></tr>" )
200+ print (f"<td align='right'>{ tests_str } </td><td align='right'>{ warnings_str } </td><td align='right'>{ errors_str } </td></tr>" )
202201 print ("</table>\n " )
203202
204203 for artifact in sorted (list (artifacts ), reverse = True ):
Original file line number Diff line number Diff line change 22# by continuous integration tests), but are known to be currently failing for
33# this specific variant.
44
5- libraries/Ethernet/examples/UDPSendReceiveString
6- libraries/Ethernet/examples/UdpNtpClient
5+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UDPSendReceiveString
6+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UdpNtpClient
Original file line number Diff line number Diff line change 22# by continuous integration tests), but are known to be currently failing for
33# this specific variant.
44
5- libraries/Ethernet/examples/UDPSendReceiveString
6- libraries/Ethernet/examples/UdpNtpClient
5+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UDPSendReceiveString
6+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UdpNtpClient
Original file line number Diff line number Diff line change 22# by continuous integration tests), but are known to be currently failing for
33# this specific variant.
44
5- libraries/Ethernet/examples/UDPSendReceiveString
6- libraries/Ethernet/examples/UdpNtpClient
5+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UDPSendReceiveString
6+ ArduinoCore-zephyr/ libraries/Ethernet/examples/UdpNtpClient
You can’t perform that action at this time.
0 commit comments