Skip to content

Commit

Permalink
Adjust warning level in compile-arduino-sketches.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
virtual-maker committed Jan 3, 2025
1 parent deff807 commit 6fc8881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.ci_scripts/compile-arduino-sketches.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ echo "<END>"
while read sketch; do
if ! grep -Fxq "$sketch" "$BLACKLIST_FILE"; then
echo "Compiling $sketch"
arduino-cli compile --fqbn "$FQBN" "$sketch" --warnings more
arduino-cli compile --fqbn "$FQBN" "$sketch" --warnings default #none default more all
compile_result=$?
if [ $compile_result -ne 0 ]; then
echo "::error::Unable to build $sketch"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ jobs:
# Build Arduino STM32F1
build-arduino-STM32F1:
needs: static-code-tests
#if: false # This will deactivate the job
if: false # This will deactivate the job
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 6fc8881

Please sign in to comment.