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
Previously, the user was required to select an arbitrary sketch, and only data for that sketch was reported. It's not certain that a single sketch will provide sufficient coverage to produce comprehensive report data.
Copy file name to clipboardExpand all lines: README.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,10 +109,6 @@ List of paths containing sketches to compile. These paths will be searched recur
109
109
110
110
Set to true to show verbose output in the log. Default `false`
111
111
112
-
### `size-report-sketch`
113
-
114
-
Name of the sketch used to compare memory usage change. Default `""`.
115
-
116
112
### `sketches-report-path`
117
113
118
114
Path in which to save a JSON formatted file containing data from the sketch compilations. Should be used only to store reports. Relative paths are relative to [`GITHUB_WORKSPACE`](https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables). The folder will be created if it doesn't already exist. This report is used by the `arduino/libraries/report-size-deltas` and `arduino/libraries/report-size-trends` actions. Default `"size-deltas-reports"`.
@@ -123,7 +119,7 @@ GitHub access token used to get information from the GitHub API. Only needed if
123
119
124
120
### `enable-size-deltas-report`
125
121
126
-
Set to `true` to cause the action to determine the change in memory usage for the [`size-reports-sketch`](#size-reports-sketch) between the pull request branch and the tip of the pull request's base branch. This may be used with the [`arduino/actions/libraries/report-size-deltas` action](https://github.com/arduino/actions/tree/master/libraries/report-size-deltas). Default `false`.
122
+
Set to `true` to cause the action to determine the change in memory usage of the compiled sketches between the pull request branch and the tip of the pull request's base branch. This may be used with the [`arduino/actions/libraries/report-size-deltas` action](https://github.com/arduino/actions/tree/master/libraries/report-size-deltas). Default `false`.
127
123
128
124
## Example usage
129
125
@@ -142,7 +138,6 @@ Storing the memory usage change report as a [workflow artifact](https://help.git
Copy file name to clipboardExpand all lines: action.yml
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,17 +19,14 @@ inputs:
19
19
verbose:
20
20
description: 'Set to true to show verbose output in the log'
21
21
default: false
22
-
size-report-sketch:
23
-
description: 'Name of the sketch used to compare memory usage change'
24
-
default: ''
25
22
sketches-report-path:
26
23
description: 'Path in which to save a JSON formatted file containing data from the sketch compilations'
27
24
default: 'size-deltas-reports'
28
25
github-token:
29
26
description: 'GitHub access token used to get information from the GitHub API. Only needed if you are using the size deltas report feature with a private repository.'
30
27
default: ''
31
28
enable-size-deltas-report:
32
-
description: 'Set to true to cause the action to determine the change in memory usage for the size-reports-sketch'
29
+
description: 'Set to true to cause the action to determine the change in memory usage of the compiled sketches between the head and base refs of a PR'
0 commit comments