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
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ YAML-format list of platform dependencies to install.
22
22
23
23
Default `""`. If no `platforms` input is provided, the board's dependency will be automatically determined from the `fqbn` input and the latest version of that platform will be installed via Board Manager.
24
24
25
-
If a platform dependency from a non-Board Manager source of the same name as another Board Manager source platform dependency is defined, they will both be installed, with the non-Board Manager dependency overwriting the Board Manager platform installation. This permits testing against a non-release version of a platform while using Board Manager to install the platform's tools dependencies.
25
+
If a platform dependency from a non-Board Manager source of the same name as another Board Manager source platform dependency is defined, they will both be installed, with the non-Board Manager dependency overwriting the Board Manager platform installation. This permits testing against a non-release version of a platform while using Board Manager to install the platform's tools dependencies.
26
26
Example:
27
27
```yaml
28
28
platforms: |
@@ -68,14 +68,16 @@ YAML-format list of library dependencies to install.
68
68
69
69
Default `"- source-path: ./"`. This causes the repository to be installed as a library. If there are no library dependencies and you want to override the default, set the `libraries` input to an empty list (`- libraries: '-'`).
70
70
71
+
Libraries are installed under the Arduino user folder at `~/Arduino/libraries`.
72
+
71
73
Note: the original space-separated list format is also supported. When this syntax is used, the repository under test will always be installed as a library.
72
74
73
75
#### Sources:
74
76
75
77
##### Library Manager
76
78
77
79
Keys:
78
-
- `name`- name of the library.
80
+
- `name`- name of the library, as defined in the `name` field of its [library.properties](https://arduino.github.io/arduino-cli/library-specification/#libraryproperties-file-format) metadata file. The library will be installed to a folder matching the name, but with any spaces replaced by `_`.
79
81
- `version`- version of the library to install. Default is the latest version.
0 commit comments