da4593f937
IDF v4.4 does not have an official release so for now use the latest master. Also remove building GENERIC with no options (all the other boards are no-option builds), to keep CI time reasonable. Signed-off-by: Damien George <damien@micropython.org>
33 lines
685 B
YAML
33 lines
685 B
YAML
name: esp32 port
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/*.yml'
|
|
- 'tools/**'
|
|
- 'py/**'
|
|
- 'extmod/**'
|
|
- 'lib/**'
|
|
- 'drivers/**'
|
|
- 'ports/esp32/**'
|
|
|
|
jobs:
|
|
build_idf402:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- 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@v2
|
|
- name: Install packages
|
|
run: source tools/ci.sh && ci_esp32_idf44_setup
|
|
- name: Build
|
|
run: source tools/ci.sh && ci_esp32_build
|