Switch to release versions of IDF, and add 5.3 #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ESP-IDF CI | |
on: [workflow_call, push] | |
jobs: | |
esp_idf_build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: | |
- name: v44_build | |
version_number: release-v4.4 | |
target: esp32c3 | |
- name: v51_build | |
version_number: release-v5.1 | |
target: esp32c6 | |
- name: v52_build | |
version_number: release-v5.2 | |
target: esp32c6 | |
- name: v53_build | |
version_number: release-v5.3 | |
target: esp32c6 | |
example: | |
- name: simple | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Generate html | |
run: python binary_to_h.py html/ota.html src/impl/ota_html.h | |
- name: ESP-IDF Build | |
uses: espressif/esp-idf-ci-action@v1 | |
with: | |
esp_idf_version: ${{ matrix.version.version_number }} | |
target: ${{ matrix.version.target }} | |
path: examples/espidf/${{ matrix.example.name }} |