From 9118ad659b21e98c5f44fe1b13f89ec1d23756b1 Mon Sep 17 00:00:00 2001 From: Feng Xiao Date: Thu, 23 Feb 2017 17:53:06 -0800 Subject: Add Ruby compatibilty test against 3.0.0. --- ruby/compatibility_tests/v3.0.0/test.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 ruby/compatibility_tests/v3.0.0/test.sh (limited to 'ruby/compatibility_tests/v3.0.0/test.sh') diff --git a/ruby/compatibility_tests/v3.0.0/test.sh b/ruby/compatibility_tests/v3.0.0/test.sh new file mode 100755 index 00000000..996dc020 --- /dev/null +++ b/ruby/compatibility_tests/v3.0.0/test.sh @@ -0,0 +1,17 @@ +#!/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 -- cgit v1.2.3