Enable automated builds for most transports.
[platform/upstream/iotivity.git] / auto_build.sh
1 #! /bin/bash
2
3 # Ideally we will capture the exit code of each step and try them all before failing
4 # the build script.  For now, use set -e and fail the build at first failure.
5 set -e
6
7 function build_all()
8 {
9         if [ $(uname -s) = "Linux" ]
10         then
11                 build_linux_unsecured $1 $2
12                 build_linux_secured $1 $2
13                 build_linux_unsecured_with_ra $1 $2
14                 build_linux_secured_with_ra $1 $2
15         fi
16
17         build_android $1 $2
18
19         build_arduino $1 $2
20
21         build_tizen $1 $2
22
23         if [ $(uname -s) = "Darwin" ]
24         then
25                 build_darwin $1 $2
26         fi
27 }
28
29 function build_linux()
30 {
31         build_linux_unsecured $1 $2
32
33         build_linux_secured $1 $2
34 }
35
36 function build_linux_unsecured()
37 {
38         echo "*********** Build for linux ************"
39         scons RELEASE=$1 $2
40 }
41
42 function build_linux_secured()
43 {
44         echo "*********** Build for linux with Security *************"
45         scons RELEASE=$1 SECURED=1 $2
46 }
47
48 function build_linux_unsecured_with_ra()
49 {
50
51         echo "*********** Build for linux With Remote Access *************"
52         scons RELEASE=$1 WITH_RA=1 $2
53 }
54
55 function build_linux_secured_with_ra()
56 {
57         echo "*********** Build for linux With Remote Access & Security ************"
58         scons RELEASE=$1 WITH_RA=1 SECURED=1 $2
59 }
60
61 function build_android()
62 {
63         # Note: for android, as oic-resource uses C++11 feature stoi and to_string,
64         # it requires gcc-4.9, currently only android-ndk-r10(for linux)
65         # and windows android-ndk-r10(64bit target version) support these features.
66         echo "*********** Build Boost for android ***********"
67         # disable parallel build for android as gradle depends on scons to finish first
68         export SCONSFLAGS="-Q"
69
70         echo "*********** Build for android x86 *************"
71         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=IP $2
72         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=BT $2
73         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=BLE $2
74
75         echo "*********** Build for android armeabi *************"
76         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=IP $2
77         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=BT $2
78         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=BLE $2
79
80         # enable parallel build
81         export SCONSFLAGS="-Q -j 4"
82 }
83
84 function build_arduino()
85 {
86         echo "*********** Build for arduino avr *************"
87         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
88         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
89         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=BLE SHIELD=RBL_NRF8001 RELEASE=$1 $2
90
91         echo "*********** Build for arduino arm *************"
92         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
93         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
94         # BLE support for the Arduino Due is currently unavailable.
95 }
96
97 function build_tizen()
98 {
99         echo "*********** Build for Tizen CA lib and sample *************"
100         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true RELEASE=$1 $2
101
102         echo "*********** Build for Tizen CA lib and sample with Security *************"
103         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true SECURED=1 RELEASE=$1 $2
104 }
105
106 function build_darwin() # Mac OSx and iOS
107 {
108         echo "*********** Build for OSX *************"
109         scons TARGET_OS=darwin SYS_VERSION=10.9 RELEASE=$1 $2
110
111         echo "*********** Build for IOS i386 *************"
112         scons TARGET_OS=ios TARGET_ARCH=i386 SYS_VERSION=7.0 RELEASE=$1 $2
113
114         echo "*********** Build for IOS x86_64 *************"
115         scons TARGET_OS=ios TARGET_ARCH=x86_64 SYS_VERSION=7.0 RELEASE=$1 $2
116
117         echo "*********** Build for IOS armv7 *************"
118         scons TARGET_OS=ios TARGET_ARCH=armv7 SYS_VERSION=7.0 RELEASE=$1 $2
119
120         echo "*********** Build for IOS armv7s *************"
121         scons TARGET_OS=ios TARGET_ARCH=armv7s SYS_VERSION=7.0 RELEASE=$1 $2
122
123         echo "*********** Build for IOS arm64 *************"
124         scons TARGET_OS=ios TARGET_ARCH=arm64 SYS_VERSION=7.0 RELEASE=$1 $2
125 }
126
127 function unit_tests()
128 {
129         echo "*********** Unit test Start *************"
130         scons resource RELEASE=false -c
131         scons resource LOGGING=false RELEASE=false
132         scons resource TEST=1 RELEASE=false
133         echo "*********** Unit test Stop *************"
134 }
135
136 function  help()
137 {
138         echo "Usage:"
139         echo "  build:"
140         echo "     `basename $0` <target_build>"
141         echo "      Allowed values for <target_build>: all, linux_unsecured, linux_secured, linux_unsecured_with_ra, linux_secured_with_ra, android, arduino, tizen, darwin"
142         echo "      Note: \"linux\" will build \"linux_unsecured\", \"linux_secured\", \"linux_unsecured_with_ra\" & \"linux_secured_with_ra\"."
143         echo "      Any selection will build both debug and release versions of all available targets in the scope you've"
144         echo "      selected. To choose any specific command, please use the SCons commandline directly. Please refer"
145         echo "      to [IOTIVITY_REPO]/Readme.scons.txt."
146         echo "  clean:"
147         echo "     `basename $0` -c"
148 }
149
150 # Suppress "Reading ..." message and enable parallel build
151 export SCONSFLAGS="-Q -j 4"
152
153 if [ $# -eq 1 ]
154 then
155         if [ $1 = '-c' ]
156         then
157                 build_all true $1
158                 build_all false $1
159                 exit 0
160         elif [ $1 = 'all' ]
161         then
162                 build_all true
163                 build_all false
164                 unit_tests
165         elif [ $1 = 'linux' ]
166         then
167                 build_linux true
168                 build_linux false
169         elif [ $1 = 'linux_unsecured' ]
170         then
171                 build_linux_unsecured true
172                 build_linux_unsecured false
173         elif [ $1 = 'linux_secured' ]
174         then
175                 build_linux_secured true
176                 build_linux_secured false
177         elif [ $1 = 'linux_unsecured_with_ra' ]
178         then
179                 build_linux_unsecured_with_ra true
180                 build_linux_unsecured_with_ra false
181         elif [ $1 = 'linux_secured_with_ra' ]
182         then
183                 build_linux_secured_with_ra true
184                 build_linux_secured_with_ra false
185         elif [ $1 = 'android' ]
186         then
187                 build_android true
188                 build_android false
189         elif [ $1 = 'arduino' ]
190         then
191                 build_arduino true
192                 build_arduino false
193         elif [ $1 = 'tizen' ]
194         then
195                 build_tizen true
196                 build_tizen false
197         elif [ $1 = 'darwin' ]
198         then
199                 build_darwin true
200                 build_darwin false
201         elif [ $1 = 'unit_tests' ]
202         then
203                 unit_tests
204         else
205                 help
206                 exit -1
207         fi
208 elif [ $# -eq 0 ]
209 then
210         build_all true
211         build_all false
212         unit_tests
213 else
214         help
215         exit -1
216 fi
217
218 echo "===================== done ====================="