blob: 5281cd2007c94ce949de95c9ca134877eae6e1e4 [file] [log] [blame]
Josh Haberman738393b2016-02-18 20:10:23 -08001#!/bin/bash
Thomas Van Lentenc4d36382015-06-09 13:35:41 -04002
Josh Haberman0f8c25d2016-02-19 09:11:38 -08003on_travis() {
4 if [ "$TRAVIS" == "true" ]; then
5 "$@"
6 fi
7}
8
Josh Haberman181c7f22015-07-15 11:05:10 -07009# For when some other test needs the C++ main build, including protoc and
10# libprotobuf.
11internal_build_cpp() {
Josh Haberman738393b2016-02-18 20:10:23 -080012 if [ -f src/protoc ]; then
13 # Already built.
14 return
15 fi
16
Josh Habermand33e93b2016-02-18 19:13:07 -080017 if [[ $(uname -s) == "Linux" && "$TRAVIS" == "true" ]]; then
Feng Xiao91258632015-12-21 03:34:28 -080018 # Install GCC 4.8 to replace the default GCC 4.6. We need 4.8 for more
19 # decent C++ 11 support in order to compile conformance tests.
20 sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
21 sudo apt-get update -qq
22 sudo apt-get install -qq g++-4.8
23 export CXX="g++-4.8" CC="gcc-4.8"
24 fi
Feng Xiao1e2fece2015-12-18 15:16:07 -080025
Chris Fallin20e94b22015-05-13 16:43:48 -070026 ./autogen.sh
27 ./configure
Josh Habermand33e93b2016-02-18 19:13:07 -080028 make $PARALLELISM
Josh Haberman181c7f22015-07-15 11:05:10 -070029}
30
31build_cpp() {
32 internal_build_cpp
Josh Habermand33e93b2016-02-18 19:13:07 -080033 make check $PARALLELISM
Chris Fallin20e94b22015-05-13 16:43:48 -070034 cd conformance && make test_cpp && cd ..
35}
36
37build_cpp_distcheck() {
38 ./autogen.sh
39 ./configure
Josh Habermand33e93b2016-02-18 19:13:07 -080040 make distcheck $PARALLELISM
Chris Fallin20e94b22015-05-13 16:43:48 -070041}
42
Jan Tattermuschddb36ef2015-05-18 17:34:02 -070043build_csharp() {
Jon Skeetb6defa72015-08-04 10:01:40 +010044 # Just for the conformance tests. We don't currently
45 # need to really build protoc, but it's simplest to keep with the
46 # conventions of the other builds.
47 internal_build_cpp
48
Jan Tattermuschddb36ef2015-05-18 17:34:02 -070049 # Install latest version of Mono
50 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
51 echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
52 echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list
53 sudo apt-get update -qq
54 sudo apt-get install -qq mono-devel referenceassemblies-pcl nunit
55 wget www.nuget.org/NuGet.exe -O nuget.exe
56
57 (cd csharp/src; mono ../../nuget.exe restore)
58 csharp/buildall.sh
Josh Habermane891c292015-12-30 16:03:49 -080059 cd conformance && make test_csharp && cd ..
Jan Tattermuschddb36ef2015-05-18 17:34:02 -070060}
61
Tim Swast7e31c4d2015-11-20 15:32:53 -080062build_golang() {
63 # Go build needs `protoc`.
64 internal_build_cpp
65 # Add protoc to the path so that the examples build finds it.
66 export PATH="`pwd`/src:$PATH"
67
68 # Install Go and the Go protobuf compiler plugin.
69 sudo apt-get update -qq
70 sudo apt-get install -qq golang
71 export GOPATH="$HOME/gocode"
72 mkdir -p "$GOPATH/src/github.com/google"
73 ln -s "`pwd`" "$GOPATH/src/github.com/google/protobuf"
74 export PATH="$GOPATH/bin:$PATH"
75 go get github.com/golang/protobuf/protoc-gen-go
76
77 cd examples && make gotest && cd ..
78}
79
Chris Fallin20e94b22015-05-13 16:43:48 -070080use_java() {
Chris Fallin20e94b22015-05-13 16:43:48 -070081 version=$1
82 case "$version" in
83 jdk6)
Josh Haberman0f8c25d2016-02-19 09:11:38 -080084 on_travis sudo apt-get install openjdk-6-jdk
Chris Fallin20e94b22015-05-13 16:43:48 -070085 export PATH=/usr/lib/jvm/java-6-openjdk-amd64/bin:$PATH
86 ;;
87 jdk7)
Josh Haberman0f8c25d2016-02-19 09:11:38 -080088 on_travis sudo apt-get install openjdk-7-jdk
Chris Fallin20e94b22015-05-13 16:43:48 -070089 export PATH=/usr/lib/jvm/java-7-openjdk-amd64/bin:$PATH
90 ;;
91 oracle7)
92 sudo apt-get install python-software-properties # for apt-add-repository
93 echo "oracle-java7-installer shared/accepted-oracle-license-v1-1 select true" | \
94 sudo debconf-set-selections
95 yes | sudo apt-add-repository ppa:webupd8team/java
96 yes | sudo apt-get install oracle-java7-installer
97 export PATH=/usr/lib/jvm/java-7-oracle/bin:$PATH
98 ;;
99 esac
100
101 which java
102 java -version
103}
104
105build_java() {
106 # Java build needs `protoc`.
Josh Haberman181c7f22015-07-15 11:05:10 -0700107 internal_build_cpp
Feng Xiaoaf81dcf2015-12-21 03:25:59 -0800108 cd java && mvn test && mvn install
Feng Xiao9e5fb552015-12-21 11:08:18 -0800109 cd util && mvn test
110 cd ../..
111}
112
113build_java_with_conformance_tests() {
114 # Java build needs `protoc`.
115 internal_build_cpp
116 cd java && mvn test && mvn install
Feng Xiaoaf81dcf2015-12-21 03:25:59 -0800117 cd util && mvn test && mvn assembly:single
118 cd ../..
Chris Fallin20e94b22015-05-13 16:43:48 -0700119 cd conformance && make test_java && cd ..
120}
121
122build_javanano() {
123 # Java build needs `protoc`.
Josh Haberman181c7f22015-07-15 11:05:10 -0700124 internal_build_cpp
Chris Fallin20e94b22015-05-13 16:43:48 -0700125 cd javanano && mvn test && cd ..
126}
127
128build_java_jdk6() {
129 use_java jdk6
130 build_java
131}
132build_java_jdk7() {
133 use_java jdk7
Feng Xiao9e5fb552015-12-21 11:08:18 -0800134 build_java_with_conformance_tests
Chris Fallin20e94b22015-05-13 16:43:48 -0700135}
136build_java_oracle7() {
137 use_java oracle7
138 build_java
139}
140
141build_javanano_jdk6() {
142 use_java jdk6
143 build_javanano
144}
145build_javanano_jdk7() {
146 use_java jdk7
147 build_javanano
148}
149build_javanano_oracle7() {
150 use_java oracle7
151 build_javanano
152}
153
Dan O'Reilly5de2a812015-08-20 18:19:56 -0400154internal_install_python_deps() {
Josh Haberman483533d2016-02-19 12:48:33 -0800155 if [ "$TRAVIS" != "true" ]; then
156 return;
157 fi
Thomas Van Lenten9642b822015-06-10 17:21:23 -0400158 # Install tox (OS X doesn't have pip).
159 if [ $(uname -s) == "Darwin" ]; then
160 sudo easy_install tox
161 else
162 sudo pip install tox
163 fi
Dan O'Reillyd9598ca2015-08-26 20:30:41 -0400164 # Only install Python2.6/3.x on Linux.
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400165 if [ $(uname -s) == "Linux" ]; then
166 sudo apt-get install -y python-software-properties # for apt-add-repository
167 sudo apt-add-repository -y ppa:fkrull/deadsnakes
168 sudo apt-get update -qq
169 sudo apt-get install -y python2.6 python2.6-dev
Dan O'Reillyd9598ca2015-08-26 20:30:41 -0400170 sudo apt-get install -y python3.3 python3.3-dev
171 sudo apt-get install -y python3.4 python3.4-dev
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400172 fi
Dan O'Reilly5de2a812015-08-20 18:19:56 -0400173}
174
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500175internal_objectivec_common () {
176 # Make sure xctool is up to date. Adapted from
177 # http://docs.travis-ci.com/user/osx-ci-environment/
178 # We don't use a before_install because we test multiple OSes.
179 brew update
Thomas Van Lenten8c784502016-02-18 11:08:30 -0500180 # xctool 0.2.8 seems to have a bug where it randomly kills tests saying
181 # they failed. Disabling the updates, but letting it report about being
182 # updates as a hint that this needs to eventually get re-enabled.
183 # https://github.com/facebook/xctool/issues/619
184 # https://github.com/google/protobuf/issues/1232
185 brew outdated xctool || true
186 #brew outdated xctool || brew upgrade xctool
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500187 # Reused the build script that takes care of configuring and ensuring things
Thomas Van Lenten1745f7e2015-11-17 10:18:49 -0500188 # are up to date. Xcode and conformance tests will be directly invoked.
189 objectivec/DevTools/full_mac_build.sh \
190 --core-only --skip-xcode --skip-objc-conformance
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500191}
192
193internal_xctool_debug_and_release() {
Thomas Van Lentenefca3682016-02-16 15:10:14 -0500194 # Always use -reporter plain to avoid escape codes in output (makes travis
195 # logs easier to read).
196 xctool -reporter plain -configuration Debug "$@"
197 xctool -reporter plain -configuration Release "$@"
Thomas Van Lenten9642b822015-06-10 17:21:23 -0400198}
199
200build_objectivec_ios() {
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500201 internal_objectivec_common
202 # https://github.com/facebook/xctool/issues/509 - unlike xcodebuild, xctool
203 # doesn't support >1 destination, so we have to build first and then run the
204 # tests one destination at a time.
205 internal_xctool_debug_and_release \
206 -project objectivec/ProtocolBuffers_iOS.xcodeproj \
207 -scheme ProtocolBuffers \
208 -sdk iphonesimulator \
209 build-tests
210 IOS_DESTINATIONS=(
211 "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit
Thomas Van Lenten13241192016-02-16 09:19:50 -0500212 "platform=iOS Simulator,name=iPhone 6,OS=9.2" # 64bit
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500213 "platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit
Thomas Van Lenten13241192016-02-16 09:19:50 -0500214 "platform=iOS Simulator,name=iPad Air,OS=9.2" # 64bit
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500215 )
216 for i in "${IOS_DESTINATIONS[@]}" ; do
217 internal_xctool_debug_and_release \
218 -project objectivec/ProtocolBuffers_iOS.xcodeproj \
219 -scheme ProtocolBuffers \
220 -sdk iphonesimulator \
221 -destination "${i}" \
Thomas Van Lenten8c784502016-02-18 11:08:30 -0500222 run-tests
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500223 done
Thomas Van Lenten9642b822015-06-10 17:21:23 -0400224}
225
226build_objectivec_osx() {
Thomas Van Lenten76b61382015-11-09 14:21:51 -0500227 internal_objectivec_common
228 internal_xctool_debug_and_release \
229 -project objectivec/ProtocolBuffers_OSX.xcodeproj \
230 -scheme ProtocolBuffers \
231 -destination "platform=OS X,arch=x86_64" \
232 test
Thomas Van Lenten1745f7e2015-11-17 10:18:49 -0500233 cd conformance && make test_objc && cd ..
Thomas Van Lenten9642b822015-06-10 17:21:23 -0400234}
Dan O'Reilly5de2a812015-08-20 18:19:56 -0400235
Chris Fallin20e94b22015-05-13 16:43:48 -0700236build_python() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700237 internal_build_cpp
Dan O'Reilly5de2a812015-08-20 18:19:56 -0400238 internal_install_python_deps
Chris Fallin20e94b22015-05-13 16:43:48 -0700239 cd python
Dan O'Reillyd9598ca2015-08-26 20:30:41 -0400240 # Only test Python 2.6/3.x on Linux
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400241 if [ $(uname -s) == "Linux" ]; then
Jie Luo2850a982015-10-09 17:07:03 -0700242 envlist=py\{26,27,33,34\}-python
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400243 else
244 envlist=py27-python
245 fi
246 tox -e $envlist
Chris Fallin20e94b22015-05-13 16:43:48 -0700247 cd ..
248}
249
250build_python_cpp() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700251 internal_build_cpp
Dan O'Reilly5de2a812015-08-20 18:19:56 -0400252 internal_install_python_deps
253 export LD_LIBRARY_PATH=../src/.libs # for Linux
Tamir Dubersteinc91d9ab2015-05-14 21:32:39 -0400254 export DYLD_LIBRARY_PATH=../src/.libs # for OS X
Chris Fallin20e94b22015-05-13 16:43:48 -0700255 cd python
Dan O'Reillyd9598ca2015-08-26 20:30:41 -0400256 # Only test Python 2.6/3.x on Linux
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400257 if [ $(uname -s) == "Linux" ]; then
Jisi Liu72bd9c92015-10-06 10:48:57 -0700258 # py26 is currently disabled due to json_format
259 envlist=py\{27,33,34\}-cpp
Dan O'Reilly76f8a3f2015-08-21 18:51:47 -0400260 else
261 envlist=py27-cpp
262 fi
263 tox -e $envlist
Chris Fallin20e94b22015-05-13 16:43:48 -0700264 cd ..
265}
266
267build_ruby19() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700268 internal_build_cpp # For conformance tests.
Chris Fallin20e94b22015-05-13 16:43:48 -0700269 cd ruby && bash travis-test.sh ruby-1.9 && cd ..
270}
271build_ruby20() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700272 internal_build_cpp # For conformance tests.
Chris Fallin20e94b22015-05-13 16:43:48 -0700273 cd ruby && bash travis-test.sh ruby-2.0 && cd ..
274}
275build_ruby21() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700276 internal_build_cpp # For conformance tests.
Chris Fallin20e94b22015-05-13 16:43:48 -0700277 cd ruby && bash travis-test.sh ruby-2.1 && cd ..
278}
279build_ruby22() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700280 internal_build_cpp # For conformance tests.
Chris Fallin20e94b22015-05-13 16:43:48 -0700281 cd ruby && bash travis-test.sh ruby-2.2 && cd ..
282}
283build_jruby() {
Josh Haberman181c7f22015-07-15 11:05:10 -0700284 internal_build_cpp # For conformance tests.
Chris Fallin20e94b22015-05-13 16:43:48 -0700285 cd ruby && bash travis-test.sh jruby && cd ..
286}
287
Josh Habermane9cf31e2015-12-21 15:18:17 -0800288build_javascript() {
289 internal_build_cpp
Josh Haberman0d2d8bc2015-12-28 06:43:42 -0800290 cd js && npm install && npm test && cd ..
Josh Habermane9cf31e2015-12-21 15:18:17 -0800291}
292
Josh Haberman738393b2016-02-18 20:10:23 -0800293[ -n "${PARALLELISM}" ] && PARALLELISM=-j8
294
295# Note: travis currently does not support testing more than one language so the
296# .travis.yml cheats and claims to only be cpp. If they add multiple language
297# support, this should probably get updated to install steps and/or
298# rvm/gemfile/jdk/etc. entries rather than manually doing the work.
299
300# .travis.yml uses matrix.exclude to block the cases where app-get can't be
301# use to install things.
302
303# -------- main --------
304
305# Set value used in tests.sh.
306PARALLELISM=-j2
307
308if [ "$#" -ne 1 ]; then
309 echo "
310Usage: $0 { cpp |
311 csharp |
312 java_jdk6 |
313 java_jdk7 |
314 java_oracle7 |
315 javanano_jdk6 |
316 javanano_jdk7 |
317 javanano_oracle7 |
318 objectivec_ios |
319 objectivec_osx |
320 python |
321 python_cpp |
322 ruby_19 |
323 ruby_20 |
324 ruby_21 |
325 ruby_22 |
326 jruby }
327"
328 exit 1
329fi
330
331set -e # exit immediately on error
332set -x # display all commands
333eval "build_$1"