Merge pull request #2 from leeebo/feat/support_esp32p4 #4
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: Build examples | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
idf_ver: ["latest"] | |
runs-on: ubuntu-20.04 | |
container: espressif/idf:${{ matrix.idf_ver }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Build examples | |
shell: bash | |
run: | | |
. ${IDF_PATH}/export.sh | |
pip install "idf-build-apps<2.0" | |
idf-build-apps build -p ./test/idf --recursive -t esp32s3 |