Skip to content

Commit 151078b

Browse files
committed
Add platform and FQBN to workflow
1 parent 1d0459b commit 151078b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/compile-examples-profiles.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,14 @@ jobs:
6767
uses: arduino/compile-sketches@v1
6868
with:
6969
github-token: ${{ secrets.GITHUB_TOKEN }}
70-
cli-compile-flags: |
71-
- --profile
72-
- ${{ matrix.board.fqbn }}
7370
sketch-paths: |
7471
${{ env.UNIVERSAL_SKETCH_PATHS }}
7572
${{ matrix.board.additional-sketch-paths }}
73+
fqbn: ${{ matrix.board.fqbn }}
74+
platforms: ${{ matrix.board.platforms }}
75+
cli-compile-flags: |
76+
- --profile
77+
- ${{ matrix.board.fqbn }}
7678
enable-deltas-report: true
7779
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
7880
verbose: true
@@ -82,4 +84,4 @@ jobs:
8284
with:
8385
if-no-files-found: error
8486
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
85-
path: ${{ env.SKETCHES_REPORTS_PATH }}
87+
path: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)