prevent submodule headers from influencing the build

pull/12469/head
Jan Tattermusch 7 years ago
parent f567ab0d2b
commit b2cf73e1f8
  1. 5
      test/distrib/cpp/run_distrib_test_cmake.sh

@ -31,6 +31,7 @@ cd cmake/build
cmake -DCMAKE_BUILD_TYPE=Release ../.. cmake -DCMAKE_BUILD_TYPE=Release ../..
make -j4 install make -j4 install
cd ../../../../.. cd ../../../../..
rm -rf third_party/cares/cares # wipe out to prevent influencing the grpc build
# Install zlib # Install zlib
cd third_party/zlib cd third_party/zlib
@ -39,6 +40,7 @@ cd cmake/build
cmake -DCMAKE_BUILD_TYPE=Release ../.. cmake -DCMAKE_BUILD_TYPE=Release ../..
make -j4 install make -j4 install
cd ../../../.. cd ../../../..
rm -rf third_party/zlib # wipe out to prevent influencing the grpc build
# Install protobuf # Install protobuf
cd third_party/protobuf cd third_party/protobuf
@ -47,8 +49,7 @@ cd cmake/build
cmake -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release .. cmake -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release ..
make -j4 install make -j4 install
cd ../../../.. cd ../../../..
rm -rf third_party/protobuf # wipe out to prevent influencing the grpc build
# TODO: Install boringssl
# Install gRPC # Install gRPC
mkdir -p cmake/build mkdir -p cmake/build

Loading…
Cancel
Save