Skip to content

Add new libraries for Arduino compilation #2

Add new libraries for Arduino compilation

Add new libraries for Arduino compilation #2

Workflow file for this run

on:
- push
- pull_request
- workflow_dispatch
jobs:
compile:
runs-on: ubuntu-latest
env:
SKETCHES_REPORTS_PATH: sketches-reports
strategy:
matrix:
board:
- fqbn: arduino:avr:uno
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 }}
libraries: |
- source-url: https://github.com/johnrickman/LiquidCrystal_I2C.git
- source-url: https://github.com/feilipu/Arduino_FreeRTOS_Library.git
- source-url: https://github.com/mprograms/SimpleRotary.git
- uses: actions/upload-artifact@v4
with:
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
path: ${{ env.SKETCHES_REPORTS_PATH }}