ci(esp32): add build_idf522 #371
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: esp32 port | |
on: | |
push: | |
pull_request: | |
paths: | |
- '.github/workflows/*.yml' | |
- 'tools/**' | |
- 'py/**' | |
- 'extmod/**' | |
- 'shared/**' | |
- 'lib/**' | |
- 'drivers/**' | |
- 'ports/esp32/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_idf402: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Initialize lv_bindings submodule | |
run: git submodule update --init --recursive lib/lv_bindings | |
- name: Install packages | |
run: source tools/ci.sh && ci_esp32_idf402_setup | |
- name: Build | |
run: source tools/ci.sh && ci_esp32_build | |
build_idf44: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Initialize lv_bindings submodule | |
run: git submodule update --init --recursive lib/lv_bindings | |
- name: Install packages | |
run: source tools/ci.sh && ci_esp32_idf44_setup | |
- name: Build | |
run: source tools/ci.sh && ci_esp32_build | |
build_idf522: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Initialize lv_bindings submodule | |
run: git submodule update --init --recursive lib/lv_bindings | |
- name: Install packages | |
run: source tools/ci.sh && ci_esp32_idf522_setup | |
- name: Build | |
run: source tools/ci.sh && ci_esp32_build |