Compile Bootloader #208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile Bootloader | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows | |
on: | |
push: | |
paths: | |
- ".github/workflows/compile-bootloader.yml" | |
- "extras/D11-Bootloader/**" | |
pull_request: | |
paths: | |
- ".github/workflows/compile-bootloader.yml" | |
- "extras/D11-Bootloader/**" | |
schedule: | |
# Run every Tuesday at 8 AM UTC to catch breakage caused by changes to external resources (libraries, platforms). | |
- cron: "0 8 * * TUE" | |
workflow_dispatch: | |
repository_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.board.fqbn }} | |
runs-on: ubuntu-latest | |
env: | |
SKETCHES_REPORTS_PATH: sketches-reports | |
strategy: | |
fail-fast: false | |
matrix: | |
board: | |
- fqbn: arduino:samd:mkrmotorshield:bootloader=0kb,pinmap=complete,lto=disabled | |
platforms: | | |
# Install MattairTech_Arduino:samd via Boards Manager for the toolchain | |
- name: MattairTech_Arduino:samd | |
source-url: https://www.mattairtech.com/software/arduino/package_MattairTech_index.json | |
# This needs to match with the version of MattairTech_Arduino:samd the Arduino fork is based on in order to get the right tool versions | |
version: 1.6.16 | |
# Install the platform with Motor Carrier support | |
- name: arduino:samd | |
source-url: https://github.com/arduino/ArduinoCore-samd.git | |
version: mkrmotorcarrier | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile bootloader | |
uses: arduino/compile-sketches@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
fqbn: ${{ matrix.board.fqbn }} | |
platforms: ${{ matrix.board.platforms }} | |
libraries: | | |
- name: Sodaq_wdt | |
sketch-paths: | | |
- extras/D11-Bootloader | |
enable-deltas-report: true | |
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }} | |
- name: Save sketches report as workflow artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
if-no-files-found: error | |
path: ${{ env.SKETCHES_REPORTS_PATH }} | |
name: ${{ env.SKETCHES_REPORTS_PATH }} |