2020-11-29 07:05:45 +00:00
|
|
|
name: esp32 port
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/*.yml'
|
|
|
|
- 'tools/**'
|
|
|
|
- 'py/**'
|
|
|
|
- 'extmod/**'
|
2023-02-17 01:33:13 +00:00
|
|
|
- 'shared/**'
|
2020-11-29 07:05:45 +00:00
|
|
|
- 'lib/**'
|
|
|
|
- 'drivers/**'
|
|
|
|
- 'ports/esp32/**'
|
|
|
|
|
2022-12-13 18:57:34 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-11-29 07:05:45 +00:00
|
|
|
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:
|
2022-11-10 15:50:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-11-29 07:05:45 +00:00
|
|
|
- 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:
|
2022-11-10 15:50:38 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-13 03:33:17 +01:00
|
|
|
- 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
|