Skip to content

Commit 136e17c

Browse files
committed
step
1 parent 81fccb4 commit 136e17c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

extra/ci_test_list.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ printf " - source-path: \"%s\"\n" $(find ArduinoCore-zephyr/libraries/ -maxdepth
2020
echo "EOF" >> $GITHUB_ENV
2121

2222
ALL_TESTS=$(mktemp)
23-
find "$@" ArduinoCore-zephyr/libraries/ -name *.ino > $ALL_TESTS
23+
find "$@" ArduinoCore-zephyr/libraries/ -name *.ino | sed -e 's/^\.\///' > $ALL_TESTS
2424
if [ -f $VARIANT/skip_these_examples.txt ] ; then
2525
cat $VARIANT/skip_these_examples.txt | sed -e 's/\s*#.*//' -e '/^\s*$/d' | while read -r pattern; do
26-
sed -i -e "/^$pattern/d" $ALL_TESTS
26+
sed -i -e "\\|^\\(ArduinoCore-zephyr/\\)\\?${pattern}|d" $ALL_TESTS
2727
done
2828
fi
2929
echo "ALL_TESTS<<EOF" >> $GITHUB_ENV
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This file contains a list of examples that are shipped with the core (or used
2+
# by continuous integration tests), but are not applicable for this variant,
3+
# for example because it uses hardware features not present on the CPU or board.
4+
5+
libraries/Ethernet

0 commit comments

Comments
 (0)