Skip to content

Commit e292885

Browse files
committed
add sketch reports
1 parent 1d997ac commit e292885

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/compile-examples.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424

2525
env:
2626
# sketch paths to compile (recursive) compatible with all boards
27-
UNIVERSAL_SKETCH_PATHS: '"libraries/Scheduler"'
27+
UNIVERSAL_SKETCH_PATHS: |
28+
- libraries/Scheduler
29+
SKETCHES_REPORTS_PATH: sketches-reports
2830

2931
strategy:
3032
fail-fast: false
@@ -65,10 +67,11 @@ jobs:
6567
sketch-paths: "${{ matrix.additional-sketch-paths }}"
6668
verbose: 'false'
6769
enable-deltas-report: true
70+
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
6871

6972
- name: Save memory usage change report as artifact
7073
if: github.event_name == 'pull_request'
7174
uses: actions/upload-artifact@v2
7275
with:
73-
name: size-deltas-reports
74-
path: size-deltas-reports
76+
path: ${{ env.SKETCHES_REPORTS_PATH }}
77+
name: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)