Skip to content

Commit

Permalink
Merge branch 'bugfix/homekit_examples' into 'master'
Browse files Browse the repository at this point in the history
homekit_switch: Compilation fixes

See merge request app-frameworks/esp-rainmaker!485
  • Loading branch information
shahpiyushv committed Nov 19, 2024
2 parents 9dfb45b + 273b1ec commit 7d50642
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ before_script:
- fi
- for TARGET in $EXAMPLE_TARGETS; do
- echo Building for $TARGET
- if [[ "$EXAMPLE" == "homekit_switch" && "$TARGET" == "esp32h2" ]]; then
- echo "Skipping homekit_switch build for esp32h2"
- continue
- fi
- idf.py set-target $TARGET
- idf.py build
- mkdir -p $CI_PROJECT_DIR/esp-rainmaker-bins-${CI_JOB_ID}/$EXAMPLE/$TARGET/
Expand Down Expand Up @@ -140,29 +144,25 @@ build_idf_v5.0:
image: espressif/idf:release-v5.0
variables:
EXAMPLE_TARGETS: "esp32 esp32s2 esp32c3 esp32s3"
EXAMPLES: "switch led_light fan temperature_sensor multi_device gpio"
COMPONENT_MGR_142: "1"

build_idf_v5.1:
extends: .build_template
image: espressif/idf:release-v5.1
variables:
EXAMPLE_TARGETS: "esp32 esp32s2 esp32c3 esp32s3 esp32c6 esp32c2 esp32h2"
EXAMPLES: "switch led_light fan temperature_sensor multi_device gpio"

build_idf_v5.2:
extends: .build_template
image: espressif/idf:release-v5.2
variables:
EXAMPLE_TARGETS: "esp32 esp32s2 esp32c3 esp32s3 esp32c6 esp32c2 esp32h2"
EXAMPLES: "switch led_light fan temperature_sensor multi_device gpio"

build_idf_v5.3:
extends: .build_template
image: espressif/idf:release-v5.3
variables:
EXAMPLE_TARGETS: "esp32 esp32s2 esp32c3 esp32s3 esp32c6 esp32c2 esp32h2"
EXAMPLES: "switch led_light fan temperature_sensor multi_device gpio"

build_thread_br:
extends: .build_template
Expand Down
3 changes: 3 additions & 0 deletions examples/homekit_switch/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ CONFIG_LOG_DEFAULT_LEVEL_WARN=y
# If ESP-Insights is enabled, we need MQTT transport selected
# Takes out manual efforts to enable this option
CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT=y

# Disable network provisioning component as it conflicts with the wifi provisioning component used here
CONFIG_ESP_RMAKER_USING_NETWORK_PROV=n

0 comments on commit 7d50642

Please sign in to comment.