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
Allow the libraries input to take YAML-format lists of dependencies
As more library sources are added, it will be necessary to use data structures to fully define the dependencies. Since the workflow is already written in YAML, it makes sense to use it for this purpose as well.
Support for the old space-separated list format is retained, with the identical behavior, for backwards compatibility.
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,18 @@ For 3rd party boards, also specify the Boards Manager URL:
18
18
19
19
### `libraries`
20
20
21
-
List of library dependencies to install (space separated). Default `""`.
21
+
YAML-format list of library dependencies to install.
22
+
23
+
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.
24
+
25
+
#### Sources:
26
+
27
+
##### Library Manager
28
+
29
+
Keys:
30
+
- `name`- name of the library.
31
+
- `version`- version of the library to install. Default is the latest version.
Storing the memory usage change report as a [workflow artifact](https://help.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts):
0 commit comments