Skip to content

Commit

Permalink
Create espidf-compile-v5.1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hayschan authored Jan 3, 2024
1 parent b0bd196 commit 3ec331d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/espidf-compile-v5.1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Compile ESP-IDF Sketches for v5.1

on:
pull_request:
paths:
- ".github/workflows/espidf-compile-*.yml"
- "examples/**"
- "include/**"
- "priv_include/**"
- "*.c"
- "CMakeLists.txt"
- "Kconfig"
- "idf_component.yml"

push:
paths:
- ".github/workflows/espidf-compile-*.yml"
- "examples/**"
- "include/**"
- "priv_include/**"
- "*.c"
- "CMakeLists.txt"
- "Kconfig"
- "idf_component.yml"
workflow_dispatch:
repository_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build default data polling example on v5.1
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.1
target: esp32s3
path: 'examples/default_example'

0 comments on commit 3ec331d

Please sign in to comment.