Skip to content

Release v0.14.0

Release v0.14.0 #23

Workflow file for this run

name: ESP32-S3
on:
workflow_dispatch:
pull_request:
paths:
- "src/**"
- ".github/workflows/build_esp32s3.yml"
push:
paths:
- "src/**"
- ".github/workflows/build_esp32s3.yml"
jobs:
esp32s3:
name: esp32s3 ${{ matrix.sketches.name }}
runs-on: ubuntu-latest
strategy:
matrix:
sketches:
- name: serial
- name: wifi
board:
- fqbn: esp32:esp32:esp32s3
denko-target: esp32
platforms: |
- name: esp32:esp32
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
libraries: |
- name: IRremote
version: 4.4.1
- name: ESP32Servo
- name: Adafruit NeoPixel
steps:
- name: Checkout
uses: actions/checkout@v4
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 }}