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

Commit e7dd4c2

Browse files
authored
ci: use gRPC-1.26.x to workaround a known bug (#150)
Workaround grpc/grpc#21280 by compiling against a specific commit (without a tag) of the v1.26.x gRPC branch. This extends #146 to allow the change to be imported into upstream repos.
1 parent 2933c22 commit e7dd4c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/templates/kokoro/docker-fragments.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ _EOF_
102102

103103
read_into_variable INSTALL_GRPC_FROM_SOURCE <<'_EOF_'
104104
WORKDIR /var/tmp/build
105-
RUN wget -q https://github.com/grpc/grpc/archive/v1.23.1.tar.gz && \
106-
tar -xf v1.23.1.tar.gz && \
107-
cd grpc-1.23.1 && \
105+
RUN wget -q https://github.com/grpc/grpc/archive/78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
106+
tar -xf 78ace4cd5dfcc1f2eced44d22d752f103f377e7b.tar.gz && \
107+
cd grpc-78ace4cd5dfcc1f2eced44d22d752f103f377e7b && \
108108
make -j ${NCPU:-4} && \
109109
make install && \
110110
ldconfig

0 commit comments

Comments
 (0)