Skip to content

Fix hardware UART support for UNO R4 boards #23

Fix hardware UART support for UNO R4 boards

Fix hardware UART support for UNO R4 boards #23

Workflow file for this run

name: Build / AVR
on:
workflow_dispatch:
pull_request:
paths:
- 'src/**'
- '.github/workflows/build_avr.yml'
push:
paths:
- 'src/**'
- '.github/workflows/build_avr.yml'
jobs:
avr-uno:
name: avr ${{ matrix.sketches.name }}
runs-on: ubuntu-latest
strategy:
matrix:
sketches:
- name: serial
- name: ethernet
- name: wifi
board:
- fqbn: arduino:avr:uno
denko-target: mega
platforms: |
- name: arduino:avr
libraries: |
- name: Servo
- name: IRremote
version: 4.1.2
- name: Ethernet
- name: WiFi
- name: Adafruit NeoPixel
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Generate
id: generate
run: echo "path=$(./bin/denko sketch ${{ matrix.sketches.name }} --target ${{ matrix.board.denko-target }})" >> $GITHUB_OUTPUT
- name: Compile Arduino Sketches
uses: arduino/[email protected]
with:
platforms: ${{ matrix.board.platforms }}
fqbn: ${{ matrix.board.fqbn }}
libraries: ${{ matrix.board.libraries }}
sketch-paths: |
- ${{ steps.generate.outputs.path }}