Skip to content

Commit d945537

Browse files
committed
Merge branch 'update-submodule' into 'main'
connectedhomeip: update submodule to 3c3672992c See merge request app-frameworks/esp-matter!956
2 parents ee3b2a6 + e09e20b commit d945537

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variables:
2525
IDF_CHECKOUT_REF: "v5.2.3"
2626
# This variable represents the short hash of the connectedhomeip submodule.
2727
# Note: Do change this short hash on submodule update MRs.
28-
CHIP_SHORT_HASH: "ce0101d2e2"
28+
CHIP_SHORT_HASH: "3c3672992c"
2929
DOCKER_IMAGE_NAME: "espressif/chip-idf"
3030

3131
.add_gitlab_ssh_key: &add_gitlab_ssh_key |

tools/docker/chip_idf/Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ FROM ghcr.io/project-chip/chip-build:${VERSION} as build
66
ARG IDF_CLONE_URL=https://github.com/espressif/esp-idf.git
77
ARG IDF_CHECKOUT_REF=v5.2.3
88

9+
# install requirements for pytest
10+
RUN set -x \
11+
&& apt-get update \
12+
&& DEBIAN_FRONTEND=noninteractive apt-get install -fy --fix-missing --no-install-recommends \
13+
dbus \
14+
bluez \
15+
&& : # last line
16+
917
RUN set -x \
1018
&& mkdir -p /tmp/esp-idf \
1119
&& cd /tmp/esp-idf \

0 commit comments

Comments
 (0)