Skip to content

Commit

Permalink
Check why Esp32 build is failing.
Browse files Browse the repository at this point in the history
  • Loading branch information
slav-at-attachix committed Apr 25, 2022
1 parent a37d476 commit aebc120
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
3 changes: 1 addition & 2 deletions Sming/Arch/Esp32/Components/esp32/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@ SDK_COMPONENTS += xtensa
endif

SDK_ESP_WIFI_LIBS := \
bt \
coexist \
core \
espnow \
mesh \
Expand All @@ -188,6 +186,7 @@ SDK_TARGET_ARCH_LIBS := hal xt_hal
endif

EXTRA_LIBS := \
coexist \
$(SDK_COMPONENTS) \
$(SDK_TARGET_ARCH_LIBS)

Expand Down
8 changes: 4 additions & 4 deletions Sming/Arch/Esp32/Tools/ci/build.run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#
# Esp32 build.run.sh

$MAKE_PARALLEL Basic_Blink Basic_WiFi HttpServer_ConfigNetwork DEBUG_VERBOSE_LEVEL=3 STRICT=1
$MAKE_PARALLEL Basic_Ssl ENABLE_SSL=Bearssl DEBUG_VERBOSE_LEVEL=3 STRICT=1
$MAKE_PARALLEL samples
$MAKE_PARALLEL Basic_Blink Basic_WiFi HttpServer_ConfigNetwork DEBUG_VERBOSE_LEVEL=3 STRICT=1 V=1
$MAKE_PARALLEL Basic_Ssl ENABLE_SSL=Bearssl DEBUG_VERBOSE_LEVEL=3 STRICT=1 V=1
$MAKE_PARALLEL samples V=1

$MAKE_PARALLEL component-samples STRICT=1
$MAKE_PARALLEL component-samples STRICT=1 V=1
2 changes: 2 additions & 0 deletions Sming/Arch/Esp32/Tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ fi
rm -f "$IDF_PATH"
ln -s "$IDF_CLONE_PATH" "$IDF_PATH"

(cd "$IDF_PATH" && git submodule update --init)

# Install IDF tools and packages
python3 "$IDF_PATH/tools/idf_tools.py" --non-interactive install
python3 -m pip install -r "$IDF_PATH/requirements.txt"
Expand Down
24 changes: 12 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ environment:
secure: rCs19uNvDR07w1d2pfwJIzewiEQ2zpKXdqFp5BqHQAA=

matrix:
- SMING_ARCH: Host

- SMING_ARCH: Esp8266
# - SMING_ARCH: Host
#
# - SMING_ARCH: Esp8266

- SMING_ARCH: Esp32
SMING_SOC: esp32

- SMING_ARCH: Esp32
SMING_SOC: esp32s2

- SMING_ARCH: Esp32
SMING_SOC: esp32c3

- SMING_ARCH: Rp2040

- BUILD_DOCS: true
# - SMING_ARCH: Esp32
# SMING_SOC: esp32s2
#
# - SMING_ARCH: Esp32
# SMING_SOC: esp32c3
#
# - SMING_ARCH: Rp2040
#
# - BUILD_DOCS: true

install:
- ps: |
Expand Down

0 comments on commit aebc120

Please sign in to comment.