Skip to content

Commit

Permalink
Workaround fix for docker bloaty issue #35364
Browse files Browse the repository at this point in the history
  • Loading branch information
raju-apple committed Sep 4, 2024
1 parent 1d74779 commit b458c68
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion integrations/docker/images/chip-cert-bins/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,13 @@ RUN set -x \
&& cd .. \
&& rm -rf gn \
&& : # last line

#TODO Issue #35280: this is only added as a workaround to bloaty build failures, remove it once bloaty fixes issue
# Clone and install abseil-cpp
RUN git clone https://github.com/abseil/abseil-cpp.git /tmp/abseil-cpp \
&& cd /tmp/abseil-cpp \
&& cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local \
&& cmake --build build --target install \
&& rm -rf /tmp/abseil-cpp
# Install bloat comparison tools
RUN set -x \
&& git clone https://github.com/google/bloaty.git \
Expand Down

0 comments on commit b458c68

Please sign in to comment.