It is common for Arduino projects to target multiple boards. In this case, the sketch compilation job in the workflow should be configured to compile for each of the target boards in order to provide comprehensive coverage.
This can be accomplished in an easily maintainable and efficient manner by using a matrix to generate a parallel workflow job for each board.
Each sketch compilation job will generate a sketches report file containing the data the arduino/report-size-deltas action will use to produce the size deltas report comment. The sketches report file is passed from the sketch compilation job to the job containing the arduino/report-size-deltas step via a workflow artifact.
on:
- push
- pull_request
jobs:
compile:
runs-on: ubuntu-latest
env:
# It's convenient to set variables for values used multiple times in the workflow.
SKETCHES_REPORTS_PATH: sketches-reports
strategy:
matrix:
board:
# Each element in the sequence produces a matrix job:
- fqbn: arduino:avr:uno
# This suffix will be used to define a unique name for the sketches report artifact.
artifact-name-suffix: arduino-avr-uno
- fqbn: arduino:samd:mkrzero
artifact-name-suffix: arduino-samd-mkrzero
steps:
- uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
with:
enable-deltas-report: true
fqbn: ${{ matrix.board.fqbn }}
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
- uses: actions/upload-artifact@v4
with:
# A fixed prefix on the artifact name allows the arduino/report-size-deltas action to identify the sketches
# report artifacts.
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
path: ${{ env.SKETCHES_REPORTS_PATH }}
on:
schedule:
- cron: "*/5 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: arduino/report-size-deltas@v1
with:
# This regular expression matches names of sketches report artifacts produced by sketch compilation workflow.
sketches-reports-source: ^sketches-report-.+
%%{
init: {
'flowchart': {
'curve': 'basis'
},
'theme': 'base',
'themeVariables': {
'clusterBkg': '#ffffff',
'edgeLabelBackground': '#ffffff',
'lineColor': '#000000',
'primaryBorderColor': '#000000',
'primaryColor': '#f0f0f0',
'primaryTextColor': '#000000'
}
}
}%%
flowchart TB
subgraph main[" "]
direction TB
subgraph compileWorkflow["Sketch compilation workflow run"]
direction TB
unoJob["arduino:avr:uno<br />job"]
mkrzeroJob["arduino:samd:mkrzero<br />job"]
unoCompile["arduino/compile-sketches<br />action"]
mkrzeroCompile["arduino/compile-sketches<br />action"]
unoReportFile["arduino-avr-uno.json"]
mkrzeroReportFile["arduino-samd-mkrzero.json"]
unoUpload["actions/upload-artifact<br />action"]
mkrzeroUpload["actions/upload-artifact<br />action"]
unoArtifact["sketches-reports-arduino-avr-uno<br />artifact"]
mkrzeroArtifact["sketches-reports-arduino-samd-mkrzero<br />artifact"]
end
subgraph reportWorkflow["Size deltas report workflow run"]
direction TB
reportAction["arduino/report-size-deltas<br />action"]
end
subgraph pr["Pull request"]
direction TB
comment["Size deltas report<br />comment"]
end
unoJob --> unoCompile
mkrzeroJob --> mkrzeroCompile
unoCompile --> unoReportFile
mkrzeroCompile --> mkrzeroReportFile
unoReportFile --> unoUpload
mkrzeroReportFile --> mkrzeroUpload
unoUpload --> unoArtifact
mkrzeroUpload --> mkrzeroArtifact
unoArtifact --> reportAction
mkrzeroArtifact --> reportAction
reportAction --> comment
end
on:
- push
- pull_request
env:
# It's convenient to set variables for values used multiple times in the workflow.
SKETCHES_REPORTS_PATH: sketches-reports
jobs:
compile:
runs-on: ubuntu-latest
strategy:
matrix:
board:
# Each element in the sequence produces a matrix job:
- fqbn: arduino:avr:uno
# This suffix will be used to define a unique name for the sketches report artifact.
artifact-name-suffix: arduino-avr-uno
- fqbn: arduino:samd:mkrzero
artifact-name-suffix: arduino-samd-mkrzero
steps:
- uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
with:
fqbn: ${{ matrix.board.fqbn }}
enable-deltas-report: true
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
# This step is needed to pass the size data to the report job.
- name: Upload sketches report to workflow artifact
uses: actions/upload-artifact@v4
with:
name: sketches-reports-${{ matrix.board.artifact-name-suffix }}
path: ${{ env.SKETCHES_REPORTS_PATH }}
# When using a matrix to compile for multiple boards, it's necessary to use a separate job for the deltas report
report:
needs: compile # Wait for the compile job to finish to get the data for the report
if: github.event_name == 'pull_request' # Only run the job when the workflow is triggered by a pull request
runs-on: ubuntu-latest
steps:
# This step is needed to get the size data produced by the compile jobs
- name: Download sketches reports artifacts
uses: actions/download-artifact@v4
with:
# All workflow artifacts will be downloaded to this location.
path: ${{ env.SKETCHES_REPORTS_PATH }}
- uses: arduino/report-size-deltas@v1
with:
sketches-reports-source: ${{ env.SKETCHES_REPORTS_PATH }}