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