Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes compilation of Ota library for Esp32. #2391

Merged
merged 3 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Sming/Arch/Esp32/Components/esp32/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ LIBDIRS += \
$(addprefix $(SDK_COMPONENTS_PATH)/,$(SDK_LIBDIRS))

SDK_INCDIRS := \
app_update/include \
bootloader_support/include \
bootloader_support/include_bootloader \
driver/$(ESP_VARIANT)/include \
Expand Down
3 changes: 3 additions & 0 deletions Sming/Arch/Esp32/Tools/ci/build.run.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ REM esp32c3
REM esp32s3
%MAKE_PARALLEL% ESP_VARIANT=esp32s3 %ESP32_PROJECTS% || goto :error

REM make sure that the Ota Library sample compiles for ESP32
%MAKE_PARALLEL% -C %SMING_HOME%\Libraries\OtaUpgradeMqtt\samples\Upgrade

goto :EOF


Expand Down
3 changes: 3 additions & 0 deletions Sming/Arch/Esp32/Tools/ci/build.run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ $MAKE_PARALLEL ESP_VARIANT=esp32c3 $ESP32_PROJECTS

# esp32s3
$MAKE_PARALLEL ESP_VARIANT=esp32s3 $ESP32_PROJECTS

# make sure that the Ota Library sample compiles for ESP32
$MAKE_PARALLEL -C "$SMING_HOME/Libraries/OtaUpgradeMqtt/samples/Upgrade"