mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
268 B
17 lines
268 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Install the latest version of Bazel.
|
||
|
use_bazel.sh latest
|
||
|
|
||
|
# Verify/query CMake
|
||
|
echo PATH=$PATH
|
||
|
ls -l `which cmake`
|
||
|
cmake --version
|
||
|
|
||
|
# Log the bazel path and version.
|
||
|
which bazel
|
||
|
bazel version
|
||
|
|
||
|
cd $(dirname $0)/../..
|
||
|
bazel test --test_output=errors :all
|