forked from GoogleCloudPlatform/cloud-vision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravis.sh
executable file
·216 lines (199 loc) · 6.71 KB
/
travis.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#!/usr/bin/env bash
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Note: travis currently does not support listing more than one language so
# this 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.
# Modeled after:
# https://github.com/google/protobuf/blob/master/travis.sh
use_java() {
version=$1
case "$version" in
jdk8)
sudo apt-get -qq update || true
sudo apt-get -qqy install openjdk-8-jdk
export PATH=/usr/lib/jvm/java-8-openjdk-amd64/bin:$PATH
;;
oracle8)
sudo apt-get -qqy install python-software-properties # for apt-add-repository
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | \
sudo debconf-set-selections
sudo apt-add-repository -y ppa:webupd8team/java
sudo apt-get -qqy update || true
sudo apt-get -qqy install oracle-java8-installer
export PATH=/usr/lib/jvm/java-8-oracle/bin:$PATH
;;
esac
which java
java -version
}
build_java() {
for jdir in $(ls -d java/*/); do
(
cd "${jdir}" && mvn clean compile assembly:single
if [ -z "${GOOGLE_APPLICATION_CREDENTIALS}" ]; then
echo "Secrets not available, skipping tests."
mvn clean verify -DskipTests
else
mvn clean verify
fi
)
done
}
build_java_jdk8() {
use_java jdk8
build_java
}
build_java_oracle8() {
use_java oracle8
build_java
}
build_android() {
# Set up Gradle, then update to latest version.
# http://www.tothenew.com/blog/gradle-installation-in-ubuntu/
sudo apt-get -qqy install python-software-properties # for apt-add-repository
sudo add-apt-repository -y ppa:cwchien/gradle
sudo apt-get -qqy update || true
sudo apt-get -qqy install gradle-2.11
gradle -v
# Set up the Android SDK.
# https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7
# We can't use the default Android Travis runtime, because we are a
# multi-language project.
# Need 32-bit versions of the libraries.
# http://stackoverflow.com/a/19524010/101923
sudo dpkg --add-architecture i386
sudo apt-get -qqy update || true
# adb
sudo apt-get -qqy install libc6:i386 libstdc++6:i386
# aapt
sudo apt-get -qqy install zlib1g:i386
wget http://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
tar xzf android-sdk_r24.4.1-linux.tgz
export ANDROID_HOME=$PWD/android-sdk-linux
export PATH="${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools"
# Accept the license.
# http://stackoverflow.com/a/17863931/101923
sudo apt-get -qqy install expect
expect -c '
set timeout 600 ;
spawn android update sdk --filter platform-tools,tools,build-tools-23.0.2,android-23,extra-android-support,extra-android-m2repository,extra-google-m2repository --no-ui --force;
expect {
"Do you accept the license" { exp_send "y\r" ; exp_continue }
eof
}
'
# Build and test the app!
(
cd android/CloudVision
./gradlew --console=plain assembleDebug && \
./gradlew --console=plain lintDebug && \
./gradlew --console=plain testDebugUnitTest
)
}
build_android_jdk8() {
use_java jdk8
build_android
}
build_android_oracle8() {
use_java oracle8
build_android
}
internal_ios_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
xctool --version
}
internal_xctool_debug_and_release() {
# Always use -reporter plain to avoid escape codes in output (makes travis
# logs easier to read).
xctool -reporter plain -configuration Debug "$@"
xctool -reporter plain -configuration Release "$@"
}
build_objectivec_ios() {
internal_ios_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 ios/Objective-C/imagepicker-objc.xcodeproj \
-scheme imagepicker-objc \
-sdk iphonesimulator \
build
# TODO: build-tests, when we have tests
# IOS_DESTINATIONS=(
# "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit
# "platform=iOS Simulator,name=iPhone 6,OS=9.2" # 64bit
# "platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit
# "platform=iOS Simulator,name=iPad Air,OS=9.2" # 64bit
# )
# TODO: run-tests, when we have tests
# for i in "${IOS_DESTINATIONS[@]}" ; do
# internal_xctool_debug_and_release \
# -project objectivec/ProtocolBuffers_iOS.xcodeproj \
# -scheme ProtocolBuffers \
# -sdk iphonesimulator \
# -destination "${i}" \
# run-tests
# done
}
build_swift_ios() {
internal_ios_common
# CocoaPods is needed to manage dependencies for the Swift project.
gem install cocoapods
pod install --project-directory=ios/Swift
# 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 \
-workspace ios/Swift/imagepicker.xcworkspace \
-scheme imagepicker \
-sdk iphonesimulator \
build
# TODO: build-tests, when we have tests
# IOS_DESTINATIONS=(
# "platform=iOS Simulator,name=iPhone 4s,OS=8.1" # 32bit
# "platform=iOS Simulator,name=iPhone 6,OS=9.2" # 64bit
# "platform=iOS Simulator,name=iPad 2,OS=8.1" # 32bit
# "platform=iOS Simulator,name=iPad Air,OS=9.2" # 64bit
# )
# TODO: run-tests, when we have tests
# for i in "${IOS_DESTINATIONS[@]}" ; do
# internal_xctool_debug_and_release \
# -project objectivec/ProtocolBuffers_iOS.xcodeproj \
# -scheme ProtocolBuffers \
# -sdk iphonesimulator \
# -destination "${i}" \
# run-tests
# done
}
# -------- main --------
if [ "$#" -ne 1 ]; then
echo "
Usage: $0 { android_jdk8 |
android_oracle8 |
java_jdk8 |
java_oracle8 |
objectivec_ios |
swift_ios }
"
exit 1
fi
set -e # exit immediately on error
set -x # display all commands
eval "build_$1"