Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

ci: use gRPC-1.26.x to workaround a known bug #1232

Merged
merged 1 commit into from
Feb 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.centos-7
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ RUN wget -q https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.centos-8
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ RUN wget -q https://github.com/google/protobuf/archive/v3.9.1.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.debian-stretch
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ RUN wget -q https://github.com/google/protobuf/archive/v3.9.1.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.opensuse-leap
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ RUN wget -q https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.ubuntu-bionic
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ RUN wget -q https://github.com/google/protobuf/archive/v3.9.1.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
6 changes: 3 additions & 3 deletions ci/kokoro/install/Dockerfile.ubuntu-xenial
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ RUN wget -q https://github.com/c-ares/c-ares/archive/cares-1_14_0.tar.gz && \

# ```bash
WORKDIR /var/tmp/build
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
tar -xf v1.23.1.tar.gz && \
cd grpc-1.23.1 && \
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
make -j ${NCPU:-4} && \
make install && \
ldconfig
Expand Down
5 changes: 3 additions & 2 deletions super/external/grpc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ if (NOT TARGET grpc-project)
# Give application developers a hook to configure the version and hash
# downloaded from GitHub.
set(GOOGLE_CLOUD_CPP_GRPC_URL
"https://github.com/grpc/grpc/archive/v1.24.3.tar.gz")
"https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz"
)
set(GOOGLE_CLOUD_CPP_GRPC_SHA256
"c84b3fa140fcd6cce79b3f9de6357c5733a0071e04ca4e65ba5f8d306f10f033")
"a2034a1c8127e35c0cc7b86c1b5ad6d8e79a62c5e133c379b8b22a78ba370015")

set_external_project_build_parallel_level(PARALLEL)
set_external_project_vars()
Expand Down