2015-05-07 00:24:58 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-05-13 23:43:48 +00:00
|
|
|
|
2015-06-09 17:35:41 +00:00
|
|
|
# Note: travis currently does not support testing more than one language so the
|
|
|
|
# .travis.yml cheats and claims to only be cpp. If they add multiple language
|
|
|
|
# support, this should probably get updated to install steps and/or
|
|
|
|
# rvm/gemfile/jdk/etc. entries rather than manually doing the work.
|
|
|
|
|
|
|
|
# .travis.yml uses matrix.exclude to block the cases where app-get can't be
|
|
|
|
# use to install things.
|
|
|
|
|
2015-07-15 18:05:10 +00:00
|
|
|
# For when some other test needs the C++ main build, including protoc and
|
|
|
|
# libprotobuf.
|
|
|
|
internal_build_cpp() {
|
2015-12-21 11:34:28 +00:00
|
|
|
if [ $(uname -s) == "Linux" ]; then
|
|
|
|
# Install GCC 4.8 to replace the default GCC 4.6. We need 4.8 for more
|
|
|
|
# decent C++ 11 support in order to compile conformance tests.
|
|
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qq g++-4.8
|
|
|
|
export CXX="g++-4.8" CC="gcc-4.8"
|
|
|
|
fi
|
2015-12-18 23:16:07 +00:00
|
|
|
|
2015-05-13 23:43:48 +00:00
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make -j2
|
2015-07-15 18:05:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build_cpp() {
|
|
|
|
internal_build_cpp
|
2015-05-13 23:43:48 +00:00
|
|
|
make check -j2
|
|
|
|
cd conformance && make test_cpp && cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_cpp_distcheck() {
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make distcheck -j2
|
|
|
|
}
|
|
|
|
|
2015-05-19 00:34:02 +00:00
|
|
|
build_csharp() {
|
2015-08-04 09:01:40 +00:00
|
|
|
# Just for the conformance tests. We don't currently
|
|
|
|
# need to really build protoc, but it's simplest to keep with the
|
|
|
|
# conventions of the other builds.
|
|
|
|
internal_build_cpp
|
|
|
|
|
2015-05-19 00:34:02 +00:00
|
|
|
# Install latest version of Mono
|
|
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
|
|
|
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
|
|
|
|
echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qq mono-devel referenceassemblies-pcl nunit
|
|
|
|
wget www.nuget.org/NuGet.exe -O nuget.exe
|
|
|
|
|
|
|
|
(cd csharp/src; mono ../../nuget.exe restore)
|
|
|
|
csharp/buildall.sh
|
2015-12-31 00:03:49 +00:00
|
|
|
cd conformance && make test_csharp && cd ..
|
2015-05-19 00:34:02 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 23:32:53 +00:00
|
|
|
build_golang() {
|
|
|
|
# Go build needs `protoc`.
|
|
|
|
internal_build_cpp
|
|
|
|
# Add protoc to the path so that the examples build finds it.
|
|
|
|
export PATH="`pwd`/src:$PATH"
|
|
|
|
|
|
|
|
# Install Go and the Go protobuf compiler plugin.
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qq golang
|
|
|
|
export GOPATH="$HOME/gocode"
|
|
|
|
mkdir -p "$GOPATH/src/github.com/google"
|
|
|
|
ln -s "`pwd`" "$GOPATH/src/github.com/google/protobuf"
|
|
|
|
export PATH="$GOPATH/bin:$PATH"
|
|
|
|
go get github.com/golang/protobuf/protoc-gen-go
|
|
|
|
|
|
|
|
cd examples && make gotest && cd ..
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:43:48 +00:00
|
|
|
use_java() {
|
|
|
|
version=$1
|
|
|
|
case "$version" in
|
|
|
|
jdk6)
|
|
|
|
sudo apt-get install openjdk-6-jdk
|
|
|
|
export PATH=/usr/lib/jvm/java-6-openjdk-amd64/bin:$PATH
|
|
|
|
;;
|
|
|
|
jdk7)
|
|
|
|
sudo apt-get install openjdk-7-jdk
|
|
|
|
export PATH=/usr/lib/jvm/java-7-openjdk-amd64/bin:$PATH
|
|
|
|
;;
|
|
|
|
oracle7)
|
|
|
|
sudo apt-get install python-software-properties # for apt-add-repository
|
|
|
|
echo "oracle-java7-installer shared/accepted-oracle-license-v1-1 select true" | \
|
|
|
|
sudo debconf-set-selections
|
|
|
|
yes | sudo apt-add-repository ppa:webupd8team/java
|
|
|
|
yes | sudo apt-get install oracle-java7-installer
|
|
|
|
export PATH=/usr/lib/jvm/java-7-oracle/bin:$PATH
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
which java
|
|
|
|
java -version
|
|
|
|
}
|
|
|
|
|
|
|
|
build_java() {
|
2015-12-21 19:08:18 +00:00
|
|
|
# Java build needs `protoc`.
|
|
|
|
internal_build_cpp
|
|
|
|
cd java && mvn test && mvn install
|
|
|
|
cd util && mvn test
|
|
|
|
cd ../..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_java_with_conformance_tests() {
|
2015-05-13 23:43:48 +00:00
|
|
|
# Java build needs `protoc`.
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp
|
2015-12-21 11:25:59 +00:00
|
|
|
cd java && mvn test && mvn install
|
|
|
|
cd util && mvn test && mvn assembly:single
|
|
|
|
cd ../..
|
2015-05-13 23:43:48 +00:00
|
|
|
cd conformance && make test_java && cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_javanano() {
|
|
|
|
# Java build needs `protoc`.
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp
|
2015-05-13 23:43:48 +00:00
|
|
|
cd javanano && mvn test && cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_java_jdk6() {
|
|
|
|
use_java jdk6
|
|
|
|
build_java
|
|
|
|
}
|
|
|
|
build_java_jdk7() {
|
|
|
|
use_java jdk7
|
2015-12-21 19:08:18 +00:00
|
|
|
build_java_with_conformance_tests
|
2015-05-13 23:43:48 +00:00
|
|
|
}
|
|
|
|
build_java_oracle7() {
|
|
|
|
use_java oracle7
|
|
|
|
build_java
|
|
|
|
}
|
|
|
|
|
|
|
|
build_javanano_jdk6() {
|
|
|
|
use_java jdk6
|
|
|
|
build_javanano
|
|
|
|
}
|
|
|
|
build_javanano_jdk7() {
|
|
|
|
use_java jdk7
|
|
|
|
build_javanano
|
|
|
|
}
|
|
|
|
build_javanano_oracle7() {
|
|
|
|
use_java oracle7
|
|
|
|
build_javanano
|
|
|
|
}
|
|
|
|
|
2015-08-20 22:19:56 +00:00
|
|
|
internal_install_python_deps() {
|
2015-06-10 21:21:23 +00:00
|
|
|
# Install tox (OS X doesn't have pip).
|
|
|
|
if [ $(uname -s) == "Darwin" ]; then
|
|
|
|
sudo easy_install tox
|
|
|
|
else
|
|
|
|
sudo pip install tox
|
|
|
|
fi
|
2015-08-27 00:30:41 +00:00
|
|
|
# Only install Python2.6/3.x on Linux.
|
2015-08-21 22:51:47 +00:00
|
|
|
if [ $(uname -s) == "Linux" ]; then
|
|
|
|
sudo apt-get install -y python-software-properties # for apt-add-repository
|
|
|
|
sudo apt-add-repository -y ppa:fkrull/deadsnakes
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -y python2.6 python2.6-dev
|
2015-08-27 00:30:41 +00:00
|
|
|
sudo apt-get install -y python3.3 python3.3-dev
|
|
|
|
sudo apt-get install -y python3.4 python3.4-dev
|
2015-08-21 22:51:47 +00:00
|
|
|
fi
|
2015-08-20 22:19:56 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 19:21:51 +00:00
|
|
|
internal_objectivec_common () {
|
|
|
|
# Make sure xctool is up to date. Adapted from
|
|
|
|
# http://docs.travis-ci.com/user/osx-ci-environment/
|
|
|
|
# We don't use a before_install because we test multiple OSes.
|
|
|
|
brew update
|
|
|
|
brew outdated xctool || brew upgrade xctool
|
|
|
|
# Reused the build script that takes care of configuring and ensuring things
|
2015-11-17 15:18:49 +00:00
|
|
|
# are up to date. Xcode and conformance tests will be directly invoked.
|
|
|
|
objectivec/DevTools/full_mac_build.sh \
|
|
|
|
--core-only --skip-xcode --skip-objc-conformance
|
2015-11-09 19:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal_xctool_debug_and_release() {
|
|
|
|
xctool -configuration Debug "$@"
|
|
|
|
xctool -configuration Release "$@"
|
2015-06-10 21:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build_objectivec_ios() {
|
2015-11-09 19:21:51 +00:00
|
|
|
internal_objectivec_common
|
|
|
|
# https://github.com/facebook/xctool/issues/509 - unlike xcodebuild, xctool
|
|
|
|
# doesn't support >1 destination, so we have to build first and then run the
|
|
|
|
# tests one destination at a time.
|
|
|
|
internal_xctool_debug_and_release \
|
|
|
|
-project objectivec/ProtocolBuffers_iOS.xcodeproj \
|
|
|
|
-scheme ProtocolBuffers \
|
|
|
|
-sdk iphonesimulator \
|
|
|
|
build-tests
|
|
|
|
IOS_DESTINATIONS=(
|
|
|
|
"platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit
|
2016-02-16 14:19:50 +00:00
|
|
|
"platform=iOS Simulator,name=iPhone 6,OS=9.2" # 64bit
|
2015-11-09 19:21:51 +00:00
|
|
|
"platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit
|
2016-02-16 14:19:50 +00:00
|
|
|
"platform=iOS Simulator,name=iPad Air,OS=9.2" # 64bit
|
2015-11-09 19:21:51 +00:00
|
|
|
)
|
|
|
|
for i in "${IOS_DESTINATIONS[@]}" ; do
|
2016-02-16 16:16:42 +00:00
|
|
|
# Throw -newSimulatorInstance in incase it helps with the flake that
|
|
|
|
# started happening after xctool 0.2.8 got released.
|
|
|
|
# Use -reporter plain to avoid escape codes in output while sorting out
|
|
|
|
# flake that doesn't seem source related.
|
2015-11-09 19:21:51 +00:00
|
|
|
internal_xctool_debug_and_release \
|
|
|
|
-project objectivec/ProtocolBuffers_iOS.xcodeproj \
|
|
|
|
-scheme ProtocolBuffers \
|
|
|
|
-sdk iphonesimulator \
|
|
|
|
-destination "${i}" \
|
2016-02-16 16:16:42 +00:00
|
|
|
-reporter plain \
|
|
|
|
run-tests \
|
|
|
|
-newSimulatorInstance
|
2015-11-09 19:21:51 +00:00
|
|
|
done
|
2015-06-10 21:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build_objectivec_osx() {
|
2015-11-09 19:21:51 +00:00
|
|
|
internal_objectivec_common
|
|
|
|
internal_xctool_debug_and_release \
|
|
|
|
-project objectivec/ProtocolBuffers_OSX.xcodeproj \
|
|
|
|
-scheme ProtocolBuffers \
|
|
|
|
-destination "platform=OS X,arch=x86_64" \
|
|
|
|
test
|
2015-11-17 15:18:49 +00:00
|
|
|
cd conformance && make test_objc && cd ..
|
2015-06-10 21:21:23 +00:00
|
|
|
}
|
2015-08-20 22:19:56 +00:00
|
|
|
|
2015-05-13 23:43:48 +00:00
|
|
|
build_python() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp
|
2015-08-20 22:19:56 +00:00
|
|
|
internal_install_python_deps
|
2015-05-13 23:43:48 +00:00
|
|
|
cd python
|
2015-08-27 00:30:41 +00:00
|
|
|
# Only test Python 2.6/3.x on Linux
|
2015-08-21 22:51:47 +00:00
|
|
|
if [ $(uname -s) == "Linux" ]; then
|
2015-10-10 00:07:03 +00:00
|
|
|
envlist=py\{26,27,33,34\}-python
|
2015-08-21 22:51:47 +00:00
|
|
|
else
|
|
|
|
envlist=py27-python
|
|
|
|
fi
|
|
|
|
tox -e $envlist
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_python_cpp() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp
|
2015-08-20 22:19:56 +00:00
|
|
|
internal_install_python_deps
|
|
|
|
export LD_LIBRARY_PATH=../src/.libs # for Linux
|
2015-05-15 01:32:39 +00:00
|
|
|
export DYLD_LIBRARY_PATH=../src/.libs # for OS X
|
2015-05-13 23:43:48 +00:00
|
|
|
cd python
|
2015-08-27 00:30:41 +00:00
|
|
|
# Only test Python 2.6/3.x on Linux
|
2015-08-21 22:51:47 +00:00
|
|
|
if [ $(uname -s) == "Linux" ]; then
|
2015-10-06 17:48:57 +00:00
|
|
|
# py26 is currently disabled due to json_format
|
|
|
|
envlist=py\{27,33,34\}-cpp
|
2015-08-21 22:51:47 +00:00
|
|
|
else
|
|
|
|
envlist=py27-cpp
|
|
|
|
fi
|
|
|
|
tox -e $envlist
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
build_ruby19() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp # For conformance tests.
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ruby && bash travis-test.sh ruby-1.9 && cd ..
|
|
|
|
}
|
|
|
|
build_ruby20() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp # For conformance tests.
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ruby && bash travis-test.sh ruby-2.0 && cd ..
|
|
|
|
}
|
|
|
|
build_ruby21() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp # For conformance tests.
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ruby && bash travis-test.sh ruby-2.1 && cd ..
|
|
|
|
}
|
|
|
|
build_ruby22() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp # For conformance tests.
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ruby && bash travis-test.sh ruby-2.2 && cd ..
|
|
|
|
}
|
|
|
|
build_jruby() {
|
2015-07-15 18:05:10 +00:00
|
|
|
internal_build_cpp # For conformance tests.
|
2015-05-13 23:43:48 +00:00
|
|
|
cd ruby && bash travis-test.sh jruby && cd ..
|
|
|
|
}
|
|
|
|
|
2015-12-21 23:18:17 +00:00
|
|
|
build_javascript() {
|
|
|
|
internal_build_cpp
|
2015-12-28 14:43:42 +00:00
|
|
|
cd js && npm install && npm test && cd ..
|
2015-12-21 23:18:17 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 23:43:48 +00:00
|
|
|
# -------- main --------
|
|
|
|
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
|
|
echo "
|
|
|
|
Usage: $0 { cpp |
|
2015-05-19 00:34:02 +00:00
|
|
|
csharp |
|
2015-05-13 23:43:48 +00:00
|
|
|
java_jdk6 |
|
|
|
|
java_jdk7 |
|
|
|
|
java_oracle7 |
|
|
|
|
javanano_jdk6 |
|
|
|
|
javanano_jdk7 |
|
|
|
|
javanano_oracle7 |
|
2015-06-10 21:21:23 +00:00
|
|
|
objectivec_ios |
|
|
|
|
objectivec_osx |
|
2015-05-13 23:43:48 +00:00
|
|
|
python |
|
|
|
|
python_cpp |
|
|
|
|
ruby_19 |
|
|
|
|
ruby_20 |
|
|
|
|
ruby_21 |
|
|
|
|
ruby_22 |
|
|
|
|
jruby }
|
|
|
|
"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e # exit immediately on error
|
|
|
|
set -x # display all commands
|
|
|
|
eval "build_$1"
|