Skip to content

Commit 6fc8881

Browse files
committed
Adjust warning level in compile-arduino-sketches.sh
1 parent deff807 commit 6fc8881

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "<END>"
2626
while read sketch; do
2727
if ! grep -Fxq "$sketch" "$BLACKLIST_FILE"; then
2828
echo "Compiling $sketch"
29-
arduino-cli compile --fqbn "$FQBN" "$sketch" --warnings more
29+
arduino-cli compile --fqbn "$FQBN" "$sketch" --warnings default #none default more all
3030
compile_result=$?
3131
if [ $compile_result -ne 0 ]; then
3232
echo "::error::Unable to build $sketch"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ jobs:
307307
# Build Arduino STM32F1
308308
build-arduino-STM32F1:
309309
needs: static-code-tests
310-
#if: false # This will deactivate the job
310+
if: false # This will deactivate the job
311311
runs-on: ubuntu-latest
312312

313313
steps:

0 commit comments

Comments
 (0)