2020-11-29 02:05:45 -05:00
|
|
|
name: esp32 port
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/*.yml'
|
|
|
|
- 'tools/**'
|
|
|
|
- 'py/**'
|
|
|
|
- 'extmod/**'
|
|
|
|
- 'lib/**'
|
|
|
|
- 'drivers/**'
|
|
|
|
- 'ports/esp32/**'
|
|
|
|
|
|
|
|
jobs:
|
2021-04-12 22:33:17 -04:00
|
|
|
build_idf402:
|
2020-11-29 02:05:45 -05:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install packages
|
2021-04-12 22:33:17 -04:00
|
|
|
run: source tools/ci.sh && ci_esp32_idf402_setup
|
|
|
|
- name: Build
|
|
|
|
run: source tools/ci.sh && ci_esp32_build
|
|
|
|
|
2021-09-16 08:22:40 -04:00
|
|
|
build_idf44:
|
2021-04-12 22:33:17 -04:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install packages
|
2021-09-16 08:22:40 -04:00
|
|
|
run: source tools/ci.sh && ci_esp32_idf44_setup
|
2020-11-29 02:05:45 -05:00
|
|
|
- name: Build
|
2021-02-13 18:28:05 -05:00
|
|
|
run: source tools/ci.sh && ci_esp32_build
|