bsp: Added support for IDF v4.4 into ESP32-S3-EYE #724
Workflow file for this run
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 BSP examples | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- idf_ver: "latest" | |
parallel_count: 5 | |
parallel_index: 1 | |
- idf_ver: "latest" | |
parallel_count: 5 | |
parallel_index: 2 | |
- idf_ver: "latest" | |
parallel_count: 5 | |
parallel_index: 3 | |
- idf_ver: "latest" | |
parallel_count: 5 | |
parallel_index: 4 | |
- idf_ver: "latest" | |
parallel_count: 5 | |
parallel_index: 5 | |
- idf_ver: "release-v4.4" | |
parallel_count: 1 | |
parallel_index: 1 | |
runs-on: ubuntu-20.04 | |
container: espressif/idf:${{ matrix.idf_ver }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Build ESP-BSP examples | |
shell: bash | |
run: | | |
export IDF_EXTRA_ACTIONS_PATH=${GITHUB_WORKSPACE}/examples | |
. ${IDF_PATH}/export.sh | |
pip install idf-component-manager ruamel.yaml idf-build-apps --upgrade | |
idf-build-apps find | |
idf-build-apps build --parallel-count ${{ matrix.parallel_count }} --parallel-index ${{ matrix.parallel_index }} |