File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
ci/cloudbuild/dockerfiles Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,20 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
8484 ldconfig
8585# ```
8686
87+ # #### abseil
88+ WORKDIR /var/tmp/build/abseil-cpp
89+ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
90+ tar -xzf - --strip-components=1 && \
91+ cmake \
92+ -DCMAKE_BUILD_TYPE=Release \
93+ -DABSL_BUILD_TESTING=OFF \
94+ -DABSL_PROPAGATE_CXX_STD=ON \
95+ -DBUILD_SHARED_LIBS=yes \
96+ -S . -B cmake-out && \
97+ cmake --build cmake-out -- -j ${NCPU:-4} && \
98+ cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
99+ ldconfig
100+
87101# #### opentelemetry-cpp
88102
89103# The project has an **optional** dependency on the OpenTelemetry library.
You can’t perform that action at this time.
0 commit comments