Skip to content

[AE-158] Specify compatible sketches for each fqbn: #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ on:
repository_dispatch:

env:
UNIVERSAL_SKETCH_PATHS: |
- extras/tests
SKETCHES_REPORTS_PATH: sketches-reports
SKETCHES_REPORTS_ARTIFACT_NAME: sketches-reports

Expand All @@ -47,6 +49,27 @@ jobs:
- fqbn: arduino:mbed_opta:opta
platforms: |
- name: arduino:mbed_opta
include:
- board:
- fqbn: arduino:mbed_portenta:envie_m7
additional-sketch-paths: |
- examples/SimpleStorageWriteRead
- examples/PortentaH7Logger
- examples/AdvancedUSBInternalOperations
- examples/BackupInternalPartitions
- board:
- fqbn: arduino:renesas_portenta:portenta_c33
additional-sketch-paths: |
- examples/SimpleStorageWriteRead
- examples/AdvancedUSBInternalOperations
- examples/BackupInternalPartitions
- board:
- fqbn: arduino:mbed_opta:opta
additional-sketch-paths: |
- examples/SimpleStorageWriteRead
- examples/AdvancedUSBInternalOperations
- examples/BackupInternalPartitions



steps:
Expand All @@ -67,7 +90,8 @@ jobs:
# Additional library dependencies can be listed here.
# See: https://github.com/arduino/compile-sketches#libraries
sketch-paths: |
- examples
${{ env.UNIVERSAL_SKETCH_PATHS }}
${{ matrix.additional-sketch-paths }}
enable-deltas-report: true
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}

Expand Down