Skip to content

Commit f4a2cc4

Browse files
committed
step
1 parent 35b3dcc commit f4a2cc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/package_core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

extra/ci_collect_logs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
5858
for 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

0 commit comments

Comments
 (0)