We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b42f8 commit a715af1Copy full SHA for a715af1
extra/ci_test_list.sh
@@ -20,7 +20,8 @@ shift
20
21
echo "ALL_LIBRARIES<<EOF" >> $GITHUB_ENV
22
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
+ # 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
25
[ -z "$dep" ] || printf " - name: \"%s\"\n" "$dep" >> $GITHUB_ENV
26
done
27
0 commit comments