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.
18 lines
386 B
18 lines
386 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
# Change to the script's directory
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
# Download 3.0.0 version of protoc
|
||
|
PROTOC_BINARY_NAME="protoc-3.0.0-linux-x86_64.exe"
|
||
|
if [ `uname` = "Darwin" ]; then
|
||
|
PROTOC_BINARY_NAME="protoc-3.0.0-osx-x86_64.exe"
|
||
|
fi
|
||
|
wget http://repo1.maven.org/maven2/com/google/protobuf/protoc/3.0.0/${PROTOC_BINARY_NAME} -O protoc
|
||
|
chmod +x protoc
|
||
|
|
||
|
# Run tests
|
||
|
rake test
|