RDServer discovery functionality
[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         echo "*********** Build Boost for android ***********"
81         # disable parallel build for android as gradle depends on scons to finish first
82         export SCONSFLAGS="-Q"
83
84         echo "*********** Build for android x86 *************"
85         scons TARGET_OS=android TARGET_ARCH=x86 RELEASE=$1 TARGET_TRANSPORT=IP $2
86
87         echo "*********** Build for android armeabi *************"
88         scons TARGET_OS=android TARGET_ARCH=armeabi RELEASE=$1 TARGET_TRANSPORT=IP $2
89
90         # enable parallel build
91         export SCONSFLAGS="-Q -j 4"
92 }
93
94 function build_arduino()
95 {
96         echo "*********** Build for arduino avr *************"
97         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
98         scons resource TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
99
100         echo "*********** Build for arduino arm *************"
101         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=ETH RELEASE=$1 $2
102         scons resource TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=IP SHIELD=WIFI RELEASE=$1 $2
103 }
104
105 function build_tizen()
106 {
107         echo "*********** Build for Tizen CA lib and sample *************"
108         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true RELEASE=$1 $2
109
110         echo "*********** Build for Tizen CA lib and sample with Security *************"
111         scons -f resource/csdk/connectivity/build/tizen/SConscript TARGET_OS=tizen TARGET_TRANSPORT=IP LOGGING=true SECURED=1 RELEASE=$1 $2
112 }
113
114 function build_darwin() # Mac OSx and iOS
115 {
116         echo "*********** Build for OSX *************"
117         scons TARGET_OS=darwin SYS_VERSION=10.9 RELEASE=$1 $2
118
119         echo "*********** Build for IOS i386 *************"
120         scons TARGET_OS=ios TARGET_ARCH=i386 SYS_VERSION=7.0 RELEASE=$1 $2
121
122         echo "*********** Build for IOS x86_64 *************"
123         scons TARGET_OS=ios TARGET_ARCH=x86_64 SYS_VERSION=7.0 RELEASE=$1 $2
124
125         echo "*********** Build for IOS armv7 *************"
126         scons TARGET_OS=ios TARGET_ARCH=armv7 SYS_VERSION=7.0 RELEASE=$1 $2
127
128         echo "*********** Build for IOS armv7s *************"
129         scons TARGET_OS=ios TARGET_ARCH=armv7s SYS_VERSION=7.0 RELEASE=$1 $2
130
131         echo "*********** Build for IOS arm64 *************"
132         scons TARGET_OS=ios TARGET_ARCH=arm64 SYS_VERSION=7.0 RELEASE=$1 $2
133 }
134
135 function unit_tests()
136 {
137         echo "*********** Unit test Start *************"
138         scons resource RELEASE=false -c
139         scons resource LOGGING=false RELEASE=false
140         scons resource TEST=1 RELEASE=false
141         echo "*********** Unit test Stop *************"
142 }
143
144 function  help()
145 {
146         echo "Usage:"
147         echo "  build:"
148         echo "     `basename $0` <target_build>"
149         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"
150         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\"."
151         echo "      Any selection will build both debug and release versions of all available targets in the scope you've"
152         echo "      selected. To choose any specific command, please use the SCons commandline directly. Please refer"
153         echo "      to [IOTIVITY_REPO]/Readme.scons.txt."
154         echo "  clean:"
155         echo "     `basename $0` -c"
156 }
157
158 # Suppress "Reading ..." message and enable parallel build
159 export SCONSFLAGS="-Q -j 4"
160
161 if [ $# -eq 1 ]
162 then
163         if [ $1 = '-c' ]
164         then
165                 build_all true $1
166                 build_all false $1
167                 exit 0
168         elif [ $1 = 'all' ]
169         then
170                 build_all true
171                 build_all false
172                 unit_tests
173         elif [ $1 = 'linux' ]
174         then
175                 build_linux true
176                 build_linux false
177         elif [ $1 = 'linux_unsecured' ]
178         then
179                 build_linux_unsecured true
180                 build_linux_unsecured false
181         elif [ $1 = 'linux_secured' ]
182         then
183                 build_linux_secured true
184                 build_linux_secured false
185         elif [ $1 = 'linux_unsecured_with_ra' ]
186         then
187                 build_linux_unsecured_with_ra true
188                 build_linux_unsecured_with_ra false
189         elif [ $1 = 'linux_secured_with_ra' ]
190         then
191                 build_linux_secured_with_ra true
192                 build_linux_secured_with_ra false
193         elif [ $1 = 'linux_unsecured_with_rd' ]
194         then
195                 build_linux_unsecured_with_rd true
196                 build_linux_unsecured_with_rd false
197         elif [ $1 = 'linux_secured_with_rd' ]
198         then
199                 build_linux_secured_with_rd true
200                 build_linux_secured_with_rd false
201         elif [ $1 = 'android' ]
202         then
203                 build_android true
204                 build_android false
205         elif [ $1 = 'arduino' ]
206         then
207                 build_arduino true
208                 build_arduino false
209         elif [ $1 = 'tizen' ]
210         then
211                 build_tizen true
212                 build_tizen false
213         elif [ $1 = 'darwin' ]
214         then
215                 build_darwin true
216                 build_darwin false
217         elif [ $1 = 'unit_tests' ]
218         then
219                 unit_tests
220         else
221                 help
222                 exit -1
223         fi
224 elif [ $# -eq 0 ]
225 then
226         build_all true
227         build_all false
228         unit_tests
229 else
230         help
231         exit -1
232 fi
233
234 echo "===================== done ====================="
235
236