Merge pull request #20576 from jtattermusch/improve_cpp_distribtest

Improve C++ distribtests
pull/20756/head
Jan Tattermusch 5 years ago committed by GitHub
commit 9977877296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      test/distrib/cpp/run_distrib_test_cmake.sh
  2. 5
      test/distrib/cpp/run_distrib_test_cmake_pkgconfig.sh

@ -52,6 +52,11 @@ make -j4 install
cd ../../../.. cd ../../../..
rm -rf third_party/protobuf # wipe out to prevent influencing the grpc build rm -rf third_party/protobuf # wipe out to prevent influencing the grpc build
# Just before installing gRPC, wipe out contents of all the submodules to simulate
# a standalone build from an archive
# shellcheck disable=SC2016
git submodule foreach 'cd $toplevel; rm -rf $name'
# Install gRPC # Install gRPC
mkdir -p cmake/build mkdir -p cmake/build
cd cmake/build cd cmake/build

@ -52,6 +52,11 @@ make -j4 install
cd ../../../.. cd ../../../..
rm -rf third_party/protobuf # wipe out to prevent influencing the grpc build rm -rf third_party/protobuf # wipe out to prevent influencing the grpc build
# Just before installing gRPC, wipe out contents of all the submodules to simulate
# a standalone build from an archive
# shellcheck disable=SC2016
git submodule foreach 'cd $toplevel; rm -rf $name'
# Install gRPC # Install gRPC
mkdir -p cmake/build mkdir -p cmake/build
cd cmake/build cd cmake/build

Loading…
Cancel
Save