Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nopnop2002 committed Jun 7, 2024
2 parents 427ca82 + c61f75e commit ad94006
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/espidf-compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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_ver:
- release-v4.4
- release-v5.0
- release-v5.1
- release-v5.2
- release-v5.3
idf_target:
- esp32
- esp32s2
- esp32c3
- esp32s3
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_ver }}
target: ${{ matrix.idf_target }}
path: '.'

0 comments on commit ad94006

Please sign in to comment.