diff options
author | yang-g <yangg@google.com> | 2016-05-30 12:53:56 -0700 |
---|---|---|
committer | yang-g <yangg@google.com> | 2016-05-30 15:13:19 -0700 |
commit | e3975e72d2e58cbcfcd4cd76db9066fce381593a (patch) | |
tree | d27edeaa3ffa82ba405810826e58d81ba91460af /test/distrib | |
parent | 420999857523b88e00652c143a03c82b26b32c57 (diff) |
Move grpc installation from docker file to script.
Diffstat (limited to 'test/distrib')
-rwxr-xr-x | test/distrib/cpp/run_distrib_test.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/distrib/cpp/run_distrib_test.sh b/test/distrib/cpp/run_distrib_test.sh index 7b6418db5f..5c21a1e19e 100755 --- a/test/distrib/cpp/run_distrib_test.sh +++ b/test/distrib/cpp/run_distrib_test.sh @@ -30,7 +30,13 @@ set -ex -cd $EXTERNAL_GIT_ROOT +git clone https://github.com/grpc/grpc.git +cd grpc && git submodule update --init + +cd third_party/protobuf && ./autogen.sh && \ +./configure && make -j12 && make check && make install && ldconfig + +cd ../.. && make -j12 && make install cd examples/cpp/helloworld |