File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,21 @@ ARG GRPC_VERSION=v1.55.0
55COPY ci/setup_googletest.sh /opt/ci/setup_googletest.sh
66COPY ci/setup_ci_environment.sh /opt/ci/setup_ci_environment.sh
77COPY ci/setup_cmake.sh /opt/ci/setup_cmake.sh
8+ COPY ci/install_abseil.sh /opt/ci/install_abseil.sh
9+ COPY ci/install_protobuf.sh /opt/ci/install_protobuf.sh
810COPY ci/setup_grpc.sh /opt/ci/setup_grpc.sh
11+ COPY ci/fix-abseil-cpp-issue-1536.patch /opt/ci/fix-abseil-cpp-issue-1536.patch
912
1013RUN apt update && apt install -y wget \
1114 ninja-build \
1215 libcurl4-openssl-dev
1316
14- RUN bash /opt/ci/setup_ci_environment.sh \
15- && bash /opt/ci/setup_cmake.sh \
16- && bash /opt/ci/setup_googletest.sh \
17- && bash /opt/ci/setup_grpc.sh -r ${GRPC_VERSION}
17+ RUN cd /opt/ci && bash setup_ci_environment.sh
18+ RUN cd /opt/ci && bash setup_cmake.sh
19+ RUN cd /opt && bash ci/setup_googletest.sh \
20+ && bash ci/install_abseil.sh \
21+ && bash ci/install_protobuf.sh \
22+ && bash ci/setup_grpc.sh -p protobuf -p abseil-cpp -r ${GRPC_VERSION}
1823
1924ADD https://github.com/bazelbuild/bazelisk/releases/download/v1.22.1/bazelisk-linux-amd64 /usr/local/bin
2025
You can’t perform that action at this time.
0 commit comments