From ec078c7e1c55526ca90878d51f0b34bfb719b2c8 Mon Sep 17 00:00:00 2001 From: gaschler Date: Thu, 8 Mar 2018 10:18:28 +0100 Subject: [PATCH] Pin gRPC version (#963) Fixes build failure on trusty --- scripts/install_grpc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/install_grpc.sh b/scripts/install_grpc.sh index f8952c9..9bc081a 100755 --- a/scripts/install_grpc.sh +++ b/scripts/install_grpc.sh @@ -17,8 +17,11 @@ set -o errexit set -o verbose +VERSION="v1.10.0" +# Digest: 474c5950686e3962bd339c93d27e369bf64f568f + # Build and install gRPC. -git clone https://github.com/grpc/grpc +git clone --branch ${VERSION} --depth 1 https://github.com/grpc/grpc cd grpc git submodule update --init make