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 bee96c4 commit cb97944Copy full SHA for cb97944
.github/workflows/githubci.yml
@@ -56,4 +56,8 @@ jobs:
56
arduino-cli lib install $LIB_DEPS
57
58
- name: Build examples
59
+ allow_failure: true
60
run: python3 extras/build_all.py ${{ matrix.arduino-platform }}
61
+
62
+# - name: Build examples with all warnings enabled
63
+# run: python3 extras/build_all.py ${{ matrix.arduino-platform }} all_warnings
extras/build_all.py
@@ -23,6 +23,9 @@
23
else:
24
build_boards = default_boards
25
26
+all_warnings = True if 'all_warnings' in sys.arv[2:]
27
28
29
def errorOutputFilter(line):
30
if len(line) == 0:
31
return False
0 commit comments