Skip to content

Commit a715af1

Browse files
committed
step
1 parent 73b42f8 commit a715af1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extra/ci_test_list.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ shift
2020

2121
echo "ALL_LIBRARIES<<EOF" >> $GITHUB_ENV
2222
find "$@" ArduinoCore-zephyr/libraries/ -name library.properties | while read -r propfile; do
23-
grep '^depends=' "$propfile" | cut -d= -f2- | tr ',' '\n' | while read -r dep; do
23+
# Version constraints are ignored as they are not supported by compile-sketches
24+
grep '^depends=' "$propfile" | cut -d= -f2- | tr ',' '\n' | sed -e 's/\s*(.*)\s*$//' | while read -r dep; do
2425
[ -z "$dep" ] || printf " - name: \"%s\"\n" "$dep" >> $GITHUB_ENV
2526
done
2627
done

0 commit comments

Comments
 (0)