Skip to content

Commit 9afbfe9

Browse files
committed
espressif: workaround for mbedtls >= v3.1
Until espressif builds can be updated to work with recent versions of mbedtls, explicitly revert the version used to one that is known to work. Signed-off-by: David Brown <[email protected]>
1 parent c99b701 commit 9afbfe9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ci/espressif_run.sh

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ IDF_PATH="${HOME}/esp-idf"
99

1010
set -eo pipefail
1111

12+
revert_mcuboot() {
13+
(cd "${MCUBOOT_ROOTDIR}/ext/mbedtls";
14+
git checkout v3.0.0)
15+
}
16+
1217
prepare_environment() {
1318
# Prepare the environment for ESP-IDF
1419

@@ -44,6 +49,7 @@ build_mcuboot() {
4449
cmake --build "${build_dir}"/
4550
}
4651

52+
revert_mcuboot
4753
prepare_environment
4854

4955
if [ -n "${MCUBOOT_FEATURES}" ]; then

0 commit comments

Comments
 (0)