File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ if [ -f "$EXCLUDES" ]; then
1717 grep -vE ' ^\s*#|^\s*$' " $EXCLUDES " > " $BLACKLIST_FILE "
1818fi
1919
20+ # Debug: Print the contents of the blacklist file
21+ echo " Blacklist:"
22+ cat " $BLACKLIST_FILE "
23+ echo " <END>"
24+
2025# Find all .ino files and compile each one, excluding those in the blacklist
2126while read sketch; do
2227 if ! grep -Fxq " $sketch " " $BLACKLIST_FILE " ; then
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ jobs:
388388
389389 # Arduino nRF52832
390390 - name : Compile nRF52832 (tests)
391- # if: false # This will deactivate the step
391+ if : false # This will deactivate the step
392392 run : |
393393 FQBN="sandeepmistry:nRF5:Generic_nRF52832:softdevice=none,lfclk=lfxo"
394394 SKETCHES="./tests"
You can’t perform that action at this time.
0 commit comments