Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore: Update to latest espp, use idf-component-manager #8

chore: Update to latest espp, use idf-component-manager

chore: Update to latest espp, use idf-component-manager #8

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
build:
- path: '.'
target: esp32s3
command: |
idf.py -DSDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.test_stand" build
- path: '.'
target: esp32s3
command: |
idf.py -DSDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.motorgo" build
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build Examples
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: release-v5.4
target: ${{ matrix.build.target }}
path: ${{ matrix.build.path }}
command: ${{ matrix.build.command }}