tools/ci.sh: Build esp32 using IDF v4.0.2 and v4.3.
To test different IDF's, and also test building the GENERIC_S2 board. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
d97b8daf1a
commit
a9bbf7083e
13
.github/workflows/ports_esp32.yml
vendored
13
.github/workflows/ports_esp32.yml
vendored
@ -13,11 +13,20 @@ on:
|
||||
- 'ports/esp32/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build_idf402:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install packages
|
||||
run: source tools/ci.sh && ci_esp32_setup
|
||||
run: source tools/ci.sh && ci_esp32_idf402_setup
|
||||
- name: Build
|
||||
run: source tools/ci.sh && ci_esp32_build
|
||||
|
||||
build_idf43:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install packages
|
||||
run: source tools/ci.sh && ci_esp32_idf43_setup
|
||||
- name: Build
|
||||
run: source tools/ci.sh && ci_esp32_build
|
||||
|
17
tools/ci.sh
17
tools/ci.sh
@ -82,19 +82,27 @@ function ci_cc3200_build {
|
||||
########################################################################################
|
||||
# ports/esp32
|
||||
|
||||
function ci_esp32_setup {
|
||||
function ci_esp32_setup_helper {
|
||||
git clone https://github.com/espressif/esp-idf.git
|
||||
git -C esp-idf checkout v4.0.2
|
||||
git -C esp-idf checkout $1
|
||||
git -C esp-idf submodule update --init \
|
||||
components/bt/controller/lib \
|
||||
components/bt/host/nimble/nimble \
|
||||
components/esp_wifi/lib_esp32 \
|
||||
components/esp_wifi \
|
||||
components/esptool_py/esptool \
|
||||
components/lwip/lwip \
|
||||
components/mbedtls/mbedtls
|
||||
./esp-idf/install.sh
|
||||
}
|
||||
|
||||
function ci_esp32_idf402_setup {
|
||||
ci_esp32_setup_helper v4.0.2
|
||||
}
|
||||
|
||||
function ci_esp32_idf43_setup {
|
||||
ci_esp32_setup_helper v4.3-beta2
|
||||
}
|
||||
|
||||
function ci_esp32_build {
|
||||
source esp-idf/export.sh
|
||||
make ${MAKEOPTS} -C mpy-cross
|
||||
@ -102,6 +110,9 @@ function ci_esp32_build {
|
||||
make ${MAKEOPTS} -C ports/esp32
|
||||
make ${MAKEOPTS} -C ports/esp32 clean
|
||||
make ${MAKEOPTS} -C ports/esp32 USER_C_MODULES=../../../examples/usercmodule/micropython.cmake
|
||||
if [ -d $IDF_PATH/components/esp32s2 ]; then
|
||||
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_S2
|
||||
fi
|
||||
}
|
||||
|
||||
########################################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user