Skip to content

ESP-IDF Dev Build

ESP-IDF Dev Build #6

Workflow file for this run

name: ESP-IDF Dev Build
on:
schedule:
# Run every Sunday at 00:00 UTC
- cron: '0 0 * * 0'
workflow_dispatch: # Allow manual trigger
permissions:
contents: read
jobs:
build:
name: Build for ${{ matrix.idf_target }} (IDF v6.0-dev)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
idf_target: [esp32, esp32s2, esp32s3, esp32p4]
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
- name: Build with ESP-IDF
uses: espressif/esp-idf-ci-action@e6f5c74232b1ccd4c97ed641f1e48553853f1fd5 # v1.2.0
with:
esp_idf_version: v6.0-dev
target: ${{ matrix.idf_target }}
path: '.'