Update CherryUSB #19
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-22.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-component-manager ruamel.yaml idf-build-apps --upgrade | |
idf-build-apps build -p ./examples --recursive --target esp32s3 | |
idf-build-apps build -p ./test_app/test_components --target esp32 |