File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ jobs:
215215 run : |
216216 mkdir Blink/
217217 wget -nv https://raw.githubusercontent.com/arduino/arduino-examples/refs/heads/main/examples/01.Basics/Blink/Blink.ino -P Blink/
218+ # sets ALL_TESTS and ALL_LIBRARIES env vars
218219 extra/ci_test_list.sh ${{ matrix.variant }} Blink
219220
220221 - name : Compile tests for ${{ matrix.board }}
@@ -227,8 +228,7 @@ jobs:
227228 - name: ${{ env.PLAT }}
228229 source-path: "ArduinoCore-zephyr"
229230 sketch-paths : |
230- - Blink
231- - ArduinoCore-zephyr/libraries
231+ ${{ env.ALL_TESTS }}
232232 libraries : |
233233 ${{ env.ALL_LIBRARIES }}
234234 cli-compile-flags : |
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ details_line() {
5454 echo -e " <tr><td align=right>$ICON </td><td><details><summary>$SUMMARY </summary>$BODY </details></td></tr>"
5555}
5656
57- ARTIFACTS=$( jq -cr ' map(.artifact) | unique | .[]' <<< ${ALL_BOARD_DATA} ) # this avoids the 'zephyr' artifact
57+ ARTIFACTS=$( jq -cr ' map(.artifact) | unique | .[]' | tac <<< ${ALL_BOARD_DATA} ) # this avoids the 'zephyr' artifact
5858for artifact in $ARTIFACTS ; do
5959 echo -e " ### \` $artifact \` test results:\n"
6060 jq -c " map(select(.artifact == \" $artifact \" )) | .[]" <<< ${ALL_BOARD_DATA} | while read -r BOARD_DATA; do
You can’t perform that action at this time.
0 commit comments