Skip to content

Commit

Permalink
github/workflows: Update esp32 CI to use IDF v5.0.
Browse files Browse the repository at this point in the history
Signed-off-by: Damien George <damien@micropython.org>
  • Loading branch information
dpgeorge committed Jun 23, 2023
1 parent 68e0e88 commit 6a9db52
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 44 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/ports_esp32.yml
Expand Up @@ -18,20 +18,11 @@ concurrency:
cancel-in-progress: true

jobs:
build_idf402:
build_idf50:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- 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@v3
- name: Install packages
run: source tools/ci.sh && ci_esp32_idf44_setup
run: source tools/ci.sh && ci_esp32_idf50_setup
- name: Build
run: source tools/ci.sh && ci_esp32_build
38 changes: 5 additions & 33 deletions tools/ci.sh
Expand Up @@ -115,51 +115,23 @@ function ci_cc3200_build {
########################################################################################
# ports/esp32

function ci_esp32_setup_helper {
function ci_esp32_idf50_setup {
pip3 install pyelftools
git clone https://github.com/espressif/esp-idf.git
git -C esp-idf checkout $1
git -C esp-idf submodule update --init \
components/bt/host/nimble/nimble \
components/esp_wifi \
components/esptool_py/esptool \
components/lwip/lwip \
components/mbedtls/mbedtls
if [ -d esp-idf/components/bt/controller/esp32 ]; then
git -C esp-idf submodule update --init \
components/bt/controller/lib_esp32 \
components/bt/controller/lib_esp32c3_family
else
git -C esp-idf submodule update --init \
components/bt/controller/lib
fi
git -C esp-idf checkout v5.0.2
./esp-idf/install.sh
}

function ci_esp32_idf402_setup {
ci_esp32_setup_helper v4.0.2
}

function ci_esp32_idf44_setup {
ci_esp32_setup_helper v4.4.2
}

function ci_esp32_build {
source esp-idf/export.sh
make ${MAKEOPTS} -C mpy-cross
make ${MAKEOPTS} -C ports/esp32 submodules
make ${MAKEOPTS} -C ports/esp32 \
USER_C_MODULES=../../../examples/usercmodule/micropython.cmake \
FROZEN_MANIFEST=$(pwd)/ports/esp32/boards/manifest_test.py
if [ -d $IDF_PATH/components/esp32c3 ]; then
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_C3
fi
if [ -d $IDF_PATH/components/esp32s2 ]; then
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_S2
fi
if [ -d $IDF_PATH/components/esp32s3 ]; then
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_S3
fi
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_C3
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_S2
make ${MAKEOPTS} -C ports/esp32 BOARD=GENERIC_S3

# Test building native .mpy with xtensawin architecture.
ci_native_mpy_modules_build xtensawin
Expand Down

0 comments on commit 6a9db52

Please sign in to comment.