Open nopnop2002 opened 5 months ago
@nopnop2002 I cannot find any issues in your config just by looking at it. What kind of error has occurred? Please share the logs.
@kumekay
I used this repository for test. I think you can fork my repository and test it. https://github.com/nopnop2002/esp-idf-DFPlayerMini
This is my espidf-compile.yml:
name: esp-idf-ci-action
on:
pull_request:
paths:
- "main/**"
- "components/**"
push:
paths:
- "main/**"
- "components/**"
workflow_dispatch:
repository_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
idf_version:
- release-v4.4
- release-v5.2
idf_target:
- esp32
- esp32s2
- esp32c3
- esp32s3
idf_path:
- GetStarted
- PlayWithGpio
- PlayWithCron
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build Application with ESP-IDF
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: ${{ matrix.idf_version }}
target: ${{ matrix.idf_target }}
path: ${{ matrix.idf_path }}
This is log:
I have multiple projects that use one component.
How can I target multiple paths?
I tried the following, but an error occurred.