We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d74779 commit b458c68Copy full SHA for b458c68
integrations/docker/images/chip-cert-bins/Dockerfile
@@ -140,7 +140,13 @@ RUN set -x \
140
&& cd .. \
141
&& rm -rf gn \
142
&& : # last line
143
-
+#TODO Issue #35280: this is only added as a workaround to bloaty build failures, remove it once bloaty fixes issue
144
+# Clone and install abseil-cpp
145
+RUN git clone https://github.com/abseil/abseil-cpp.git /tmp/abseil-cpp \
146
+ && cd /tmp/abseil-cpp \
147
+ && cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local \
148
+ && cmake --build build --target install \
149
+ && rm -rf /tmp/abseil-cpp
150
# Install bloat comparison tools
151
RUN set -x \
152
&& git clone https://github.com/google/bloaty.git \
0 commit comments