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 committed May 6, 2024
1 parent ff9154d commit ab392ca
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/espidf-compile-v5.1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Compile ESP-IDF Sketches for v5.1

on:
pull_request:
paths:
- ".github/workflows/espidf-compile-*.yml"
- "main/**"
- "components/**"
- "CMakeLists.txt"
- "Kconfig"
- "partitions.csv"
- "sdkconfig.defaults"

push:
paths:
- ".github/workflows/espidf-compile-*.yml"
- "main/**"
- "components/**"
- "CMakeLists.txt"
- "Kconfig"
- "partitions.csv"
- "sdkconfig.defaults"
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: '.'

0 comments on commit ab392ca

Please sign in to comment.