Skip to content

Commit b2c2dc1

Browse files
committed
Debug script compile-arduino-sketches.sh
1 parent 27f9694 commit b2c2dc1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/.ci_scripts/compile-arduino-sketches.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ if [ -f "$EXCLUDES" ]; then
1717
grep -vE '^\s*#|^\s*$' "$EXCLUDES" > "$BLACKLIST_FILE"
1818
fi
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
2126
while read sketch; do
2227
if ! grep -Fxq "$sketch" "$BLACKLIST_FILE"; then

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)