You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,10 @@ Control the level of verbosity of the script's output in the Travis CI log. Verb
40
40
Turn on/off checking for errors with the board definition that don't affect sketch verification such as missing bootloader file. If this is turned on and an error is detected the build will be failed. This feature is off by default.
41
41
- Parameter: **BOARD_TESTING** - `true`/`false`
42
42
43
+
##### `set_library_testing LIBRARY_TESTING`
44
+
Turn on/off checking for errors with libraries that don't affect sketch verification such as missing or invalid items in the library.properties file. If this is turned on and an error is detected the build will be failed. This feature is off by default.
45
+
- Parameter: **LIBRARY_TESTING** - `true`/`false`
46
+
43
47
##### Special version names:
44
48
-`all`: Refers to all versions of the Arduino IDE (including the hourly build). In the context of `install_ide` this means all IDE versions listed in the script (those that support the command line interface, 1.5.2 and newer). In the context of all other functions this means all IDE versions that were installed via `install_ide`.
45
49
-`oldest`: The oldest release version of the Arduino IDE. In the context of `install_ide` this is the oldest of the IDE versions listed in the script (1.5.2, the first version to have a command line interface). In the context of build_sketch this means the oldest IDE version that was installed via `install_ide`.
@@ -129,6 +133,8 @@ Echo a tab separated report of all verification results to the log. The report i
129
133
- Exit Status - Exit status returned by arduino after the sketch verification.
130
134
-# Board Issues - The number of board issues detected.
131
135
- Board Issue - Short description of the last board issue detected.
136
+
-# Library Issues - The number of library issues detected. Library issues are things that cause warnings in the sketch verification output from the IDE, rather than the compiler.
137
+
- Library Issue - Short description of the last library issue detected.
@@ -886,7 +974,7 @@ function publish_report_to_repository()
886
974
fi
887
975
# Do a pull now in case another job has finished about the same time and pushed a report after the clone happened, which would otherwise cause the push to fail. This is the last chance to pull without having to deal with a merge or rebase.
0 commit comments