Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
30 lines
669 B
30 lines
669 B
#!/bin/bash |
|
# |
|
# Build file to set up and run tests |
|
set -ex |
|
|
|
# Install the latest Bazel version available |
|
use_bazel.sh latest |
|
bazel version |
|
|
|
# Print bazel testlogs to stdout when tests failed. |
|
function print_test_logs { |
|
# TODO(yannic): Only print logs of failing tests. |
|
testlogs_dir=$(bazel info bazel-testlogs) |
|
testlogs=$(find "${testlogs_dir}" -name "*.log") |
|
for log in $testlogs; do |
|
cat "${log}" |
|
done |
|
} |
|
|
|
# Change to repo root |
|
cd $(dirname $0)/../../.. |
|
|
|
git submodule update --init --recursive |
|
|
|
trap print_test_logs EXIT |
|
bazel test :build_files_updated_unittest :protobuf_test --copt=-Werror --host_copt=-Werror |
|
trap - EXIT |
|
|
|
cd examples |
|
bazel build :all
|
|
|