Update RD with latest master
[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                 build_linux_unsecured_with_rd $1 $2
16                 build_linux_secured_with_rd $1 $2
17         fi
18
19         build_android $1 $2
20
21         build_arduino $1 $2
22
23         build_tizen $1 $2
24
25         if [ $(uname -s) = "Darwin" ]
26         then
27                 build_darwin $1 $2
28         fi
29 }
30
31 function build_linux()
32 {
33         build_linux_unsecured $1 $2
34
35         build_linux_secured $1 $2
36 }
37
38 function build_linux_unsecured()
39 {
40         echo "*********** Build for linux ************"
41         scons RELEASE=$1 $2
42 }
43
44 function build_linux_secured()
45 {
46         echo "*********** Build for linux with Security *************"
47         scons RELEASE=$1 SECURED=1 $2
48 }
49
50 function build_linux_unsecured_with_ra()
51 {
52
53         echo "*********** Build for linux With Remote Access *************"
54         scons RELEASE=$1 WITH_RA=1 $2
55 }
56
57 function build_linux_secured_with_ra()
58 {
59         echo "*********** Build for linux With Remote Access & Security ************"
60         scons RELEASE=$1 WITH_RA=1 SECURED=1 $2
61 }
62
63 function build_linux_unsecured_with_rd()
64 {
65         echo "*********** Build for linux With Resource Directory *************"
66         scons RELEASE=$1 WITH_RD=1 $2
67 }
68
69 function build_linux_secured_with_rd()
70 {
71         echo "*********** Build for linux With Resource Directory & Security ************"
72         scons RELEASE=$1 WITH_RD=1 SECURED=1 $2
73 }
74
75 function build_android()
76 {
77         # Note: for android, as oic-resource uses C++11 feature stoi and to_string,
78         # it requires gcc-4.9, currently only android-ndk-r10(for linux)
79         # and windows android-ndk-r10(64bit target version) support these features.
80
81         build_android_x86 $1 $2
82         build_android_armeabi $1 $2
83 }
84
85 function build_android_x86()
86 {
87         echo "*********** Build for android x86 *************"
88         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=IP $2
89         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=BT $2
90         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=BLE $2
91 }
92
93 function build_android_armeabi()
94 {
95         echo "*********** Build for android armeabi *************"
96         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=IP $2
97         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=BT $2
98         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=BLE $2
99 }
100
101 function build_arduino()
102 {
103         echo "*********** Build for arduino avr *************"
104         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
105         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
106         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=BLE SHIELD=RBL_NRF8001 RELEASE=$1 $2
107
108         echo "*********** Build for arduino arm *************"
109         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
110         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
111         # BLE support for the Arduino Due is currently unavailable.
112 }
113
114 function build_tizen()
115 {
116         echo "*********** Build for Tizen CA lib and sample *************"
117         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true RELEASE=$1 $2
118
119         echo "*********** Build for Tizen CA lib and sample with Security *************"
120         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true SECURED=1 RELEASE=$1 $2
121 }
122
123 function build_darwin() # Mac OSx and iOS
124 {
125         echo "*********** Build for OSX *************"
126         scons TARGET_OS=darwin SYS_VERSION=10.9 RELEASE=$1 $2
127
128         echo "*********** Build for IOS i386 *************"
129         scons TARGET_OS=ios TARGET_ARCH=i386 SYS_VERSION=7.0 RELEASE=$1 $2
130
131         echo "*********** Build for IOS x86_64 *************"
132         scons TARGET_OS=ios TARGET_ARCH=x86_64 SYS_VERSION=7.0 RELEASE=$1 $2
133
134         echo "*********** Build for IOS armv7 *************"
135         scons TARGET_OS=ios TARGET_ARCH=armv7 SYS_VERSION=7.0 RELEASE=$1 $2
136
137         echo "*********** Build for IOS armv7s *************"
138         scons TARGET_OS=ios TARGET_ARCH=armv7s SYS_VERSION=7.0 RELEASE=$1 $2
139
140         echo "*********** Build for IOS arm64 *************"
141         scons TARGET_OS=ios TARGET_ARCH=arm64 SYS_VERSION=7.0 RELEASE=$1 $2
142 }
143
144 function unit_tests()
145 {
146         echo "*********** Unit test Start *************"
147         scons resource RELEASE=false -c
148         scons resource LOGGING=false RELEASE=false
149         scons resource TEST=1 RELEASE=false
150         echo "*********** Unit test Stop *************"
151 }
152
153 function  help()
154 {
155         echo "Usage:"
156         echo "  build:"
157         echo "     `basename $0` <target_build>"
158         echo "      Allowed values for <target_build>: all, linux_unsecured, linux_secured, linux_unsecured_with_ra, linux_secured_with_ra, linux_unsecured_with_rd, linux_secured_with_rd, android, arduino, tizen, darwin"
159         echo "      Note: \"linux\" will build \"linux_unsecured\", \"linux_secured\", \"linux_unsecured_with_ra\", \"linux_secured_with_ra\", \"linux_secured_with_rd\" & \"linux_unsecured_with_rd\"."
160         echo "      Any selection will build both debug and release versions of all available targets in the scope you've"
161         echo "      selected. To choose any specific command, please use the SCons commandline directly. Please refer"
162         echo "      to [IOTIVITY_REPO]/Readme.scons.txt."
163         echo "  clean:"
164         echo "     `basename $0` -c"
165 }
166
167 # Suppress "Reading ..." message and enable parallel build
168 export SCONSFLAGS="-Q -j 4"
169
170 if [ $# -eq 1 ]
171 then
172         if [ $1 = '-c' ]
173         then
174                 build_all true $1
175                 build_all false $1
176                 exit 0
177         elif [ $1 = 'all' ]
178         then
179                 build_all true
180                 build_all false
181                 unit_tests
182         elif [ $1 = 'linux' ]
183         then
184                 build_linux true
185                 build_linux false
186         elif [ $1 = 'linux_unsecured' ]
187         then
188                 build_linux_unsecured true
189                 build_linux_unsecured false
190         elif [ $1 = 'linux_secured' ]
191         then
192                 build_linux_secured true
193                 build_linux_secured false
194         elif [ $1 = 'linux_unsecured_with_ra' ]
195         then
196                 build_linux_unsecured_with_ra true
197                 build_linux_unsecured_with_ra false
198         elif [ $1 = 'linux_secured_with_ra' ]
199         then
200                 build_linux_secured_with_ra true
201                 build_linux_secured_with_ra false
202         elif [ $1 = 'linux_unsecured_with_rd' ]
203         then
204                 build_linux_unsecured_with_rd true
205                 build_linux_unsecured_with_rd false
206         elif [ $1 = 'linux_secured_with_rd' ]
207         then
208                 build_linux_secured_with_rd true
209                 build_linux_secured_with_rd false
210         elif [ $1 = 'android' ]
211         then
212                 build_android true
213                 build_android false
214         elif [ $1 = 'android_x86' ]
215         then
216         build_android_x86 true
217         build_android_x86 false
218         elif [ $1 = 'android_armeabi' ]
219         then
220         build_android_armeabi true
221         build_android_armeabi false
222         elif [ $1 = 'arduino' ]
223         then
224                 build_arduino true
225                 build_arduino false
226         elif [ $1 = 'tizen' ]
227         then
228                 build_tizen true
229                 build_tizen false
230         elif [ $1 = 'darwin' ]
231         then
232                 build_darwin true
233                 build_darwin false
234         elif [ $1 = 'unit_tests' ]
235         then
236                 unit_tests
237         else
238                 help
239                 exit -1
240         fi
241 elif [ $# -eq 0 ]
242 then
243         build_all true
244         build_all false
245         unit_tests
246 else
247         help
248         exit -1
249 fi
250
251 echo "===================== done ====================="