File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
variants/arduino_giga_r1_stm32h747xx_m7 Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ printf " - source-path: \"%s\"\n" $(find ArduinoCore-zephyr/libraries/ -maxdepth
2020echo " EOF" >> $GITHUB_ENV
2121
2222ALL_TESTS=$( mktemp)
23- find " $@ " ArduinoCore-zephyr/libraries/ -name * .ino > $ALL_TESTS
23+ find " $@ " ArduinoCore-zephyr/libraries/ -name * .ino | sed -e ' s/^\.\/// ' > $ALL_TESTS
2424if [ -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
2828fi
2929echo " ALL_TESTS<<EOF" >> $GITHUB_ENV
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments