Fixed & improved build scripts (#288)

* Fixed&improved build scripts

* Fixes and updates

* Fix for esp-idf-ci-action

* Build fixes
This commit is contained in:
Ken Van Hoeylandt
2025-06-09 21:03:18 +02:00
committed by GitHub
parent 1593eb80ce
commit a091923353
7 changed files with 36 additions and 9 deletions
+3 -2
View File
@@ -27,12 +27,13 @@ fi
echoNewPhase "Cleaning build folder"
rm -rf build
#rm -rf build
echoNewPhase "Building $sdkconfig_file"
cp $sdkconfig_file sdkconfig
if not idf.py build; then
idf.py build
if [[ $? != 0 ]]; then
fatalError "Failed to build esp32s3 SDK"
fi