forked from CUBRID/cubrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·544 lines (482 loc) · 14.5 KB
/
build.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
#!/bin/bash
#
# Copyright (C) 2008 Search Solution Corporation. All rights reserved by Search Solution.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Build and package script for CUBRID
# Requirements
# - Bash shell
# - Build tool - cmake, gcc
# - Utils - GNU tar, git, ...
# scrtip directory
script_dir=$(dirname $(readlink -f $0))
# variables for options
build_target="x86_64"
build_mode="release"
source_dir=`pwd`
default_java_dir="/usr/java/default"
java_dir=""
configure_options=""
# default build_dir = "$source_dir/build_${build_target}_${build_mode}"
build_dir=""
install_dir=""
prefix_dir=""
output_dir=""
build_args="all"
default_packages="all"
packages=""
# variables
product_name="CUBRID"
product_name_lower=$(echo $product_name | tr '[:upper:]' '[:lower:]')
typeset -i major_version
typeset -i minor_version
typeset -i patch_version
version=""
last_checking_msg=""
output_packages=""
without_cmserver=""
function print_check ()
{
echo ""
last_checking_msg="$@"
echo " $last_checking_msg..."
}
function print_result ()
{
[ -n "$last_checking_msg" ] && echo -n " "
echo " [$@] $last_checking_msg."
last_checking_msg=""
}
function print_info ()
{
[ -n "$last_checking_msg" ] && echo -n " "
echo " [INFO] $@"
}
function print_error ()
{
echo ""
echo " [ERROR] $@"
}
function print_fatal ()
{
echo ""
echo " [FATAL] $@"
echo ""
echo "[`date +'%F %T'`] QUITTING..."
echo ""
exit 1
}
function build_initialize ()
{
# check for source dir
print_check "Checking for root source path [$source_dir]"
if [ -d $source_dir -a -d $source_dir/src ]
then
print_result "OK"
else
print_fatal "Root path for source is not valid"
fi
# check Git
print_check "Checking for Git"
which_git=$(which git)
[ $? -eq 0 ] && print_info "$which_git" || print_fatal "Git not found"
print_result "OK"
# check version
print_check "Checking VERSION"
if [ -f $source_dir/VERSION ]; then
version_file=VERSION
elif [ -f $source_dir/VERSION-DIST ]; then
version_file=VERSION-DIST
fi
version=$(cat $source_dir/$version_file)
major_version=$(echo $version | cut -d . -f 1)
minor_version=$(echo $version | cut -d . -f 2)
patch_version=$(echo $version | cut -d . -f 3)
extra_version=$(echo $version | cut -d . -f 4)
if [ "x$extra_version" != "x" ]; then
serial_number=$(echo $extra_version | cut -d - -f 1)
elif [ -d $source_dir/.git ]; then
serial_number=$(cd $source_dir && git rev-list --count HEAD)
hash_tag=$(cd $source_dir && git rev-parse --short HEAD)
extra_version="$serial_number-$hash_tag"
else
extra_version=0000-unknown
serial_number=0000
fi
print_info "version: $version ($major_version.$minor_version.$patch_version.$extra_version)"
version="$major_version.$minor_version.$patch_version.$extra_version"
# old style version string (digital only version string) for legacy codes
build_number="$major_version.$minor_version.$patch_version.$serial_number"
print_result "OK"
}
function build_clean ()
{
print_check "Cleaning packaging directory"
if [ -d $install_dir ]; then
if [ "$install_dir" = "/" ]; then
print_fatal "Do not set root dir as install directory"
fi
print_info "All files in $install_dir is removing"
rm -rf $install_dir/*
fi
print_result "OK"
print_check "Cleaning build directory"
if [ -d $build_dir ]; then
if [ "$build_dir" = "/" ]; then
print_fatal "Do not set root dir as build directory"
fi
if [ $build_dir -ef $source_dir ]; then
[ -f "$build_dir/Makefile" ] && make -C $build_dir clean
else
print_info "All files in $build_dir is removing"
rm -rf $build_dir/*
fi
fi
print_result "OK"
}
function build_configure ()
{
# configure with target and options
print_check "Preparing build directory"
if [ ! -d $build_dir ]; then
mkdir -p $build_dir
fi
print_result "OK"
print_check "Checking manager server directory"
if [ ! -d "$source_dir/cubridmanager" -o ! -d "$source_dir/cubridmanager/server" ]; then
without_cmserver="true"
print_error "Manager server source path is not exist. It will not be built"
fi
print_check "Setting environment variables"
if [ "x$java_dir" != "x" ]; then
export JAVA_HOME="$java_dir"
elif [ "x$JAVA_HOME" = "x" -a "x$JAVA_HOME" = "x" ]; then
export JAVA_HOME="$default_java_dir"
fi
export PATH="$JAVA_HOME/bin:$PATH"
print_result "OK"
print_check "Prepare configure options"
# set up prefix
configure_prefix="-DCMAKE_INSTALL_PREFIX=$prefix_dir"
# set up target
case "$build_target" in
i386)
configure_options="-DENABLE_32BIT=ON $configure_options" ;;
x86_64);;
*)
print_fatal "Build target [$build_target] is not valid target" ;;
esac
# set up build mode
case "$build_mode" in
release)
configure_options="$configure_options -DCMAKE_BUILD_TYPE=RelWithDebInfo" ;;
debug)
configure_options="$configure_options -DCMAKE_BUILD_TYPE=Debug" ;;
coverage)
configure_options="$configure_options -DCMAKE_BUILD_TYPE=Coverage" ;;
profile)
configure_options="$configure_options -DCMAKE_BUILD_TYPE=Profile" ;;
*)
print_fatal "Build mode [$build_mode] is not valid build mode" ;;
esac
print_result "OK"
print_check "Configuring [with $configure_options]"
if [ "$(readlink -f $build_dir/..)" = "$source_dir" ]; then
configure_dir=".."
else
configure_dir="$source_dir"
fi
(cd $build_dir && cmake $configure_prefix $configure_options $source_dir)
[ $? -eq 0 ] && print_result "OK" || print_fatal "Configuring failed"
}
function build_compile ()
{
# make
print_check "Building"
(cd $build_dir && make -j)
[ $? -eq 0 ] && print_result "OK" || print_fatal "Building failed"
}
function build_install ()
{
# make install
print_check "Installing"
(cd $build_dir && make install)
[ $? -eq 0 ] && print_result "OK" || print_fatal "Installation failed"
}
function build_package ()
{
print_check "Preparing package directory"
if [ ! -d "$build_dir" ]; then
print_fatal "Build directory not found. please build first"
fi
print_check "Checking manager server directory"
if [ ! -d "$source_dir/cubridmanager" -o ! -d "$source_dir/cubridmanager/server" ]; then
without_cmserver="true"
print_error "Manager server source path is not exist. It will not be packaged"
fi
if [ ! -d $output_dir ]; then
mkdir -p $output_dir
fi
print_result "OK"
for package in $packages; do
print_check "Packing package for $package"
case $package in
src|zip_src)
src_package_name="$product_name_lower-$version"
if [ "$package" = "src" ]; then
package_name="$src_package_name.tar.gz"
archive_cmd="tar czf $build_dir/$package_name -T -"
else
package_name="$src_package_name.zip"
archive_cmd="zip -q $build_dir/$package_name -@"
fi
# add VERSION-DIST instead of VERSION file for full version string
(cd $source_dir && echo "$version" > VERSION-DIST && ln -sfT . cubrid-$version &&
(git ls-files -o VERSION-DIST ; git ls-files &&
(cd $source_dir/cubridmanager && git ls-files) | sed -e "s|^|cubridmanager/|") | sed -e "/^VERSION$/d" -e "s|^|cubrid-$version/|" | $archive_cmd &&
rm cubrid-$version VERSION-DIST)
if [ $? -eq 0 ]; then
output_packages="$output_packages $package_name"
[ $build_dir -ef $output_dir ] || mv -f $build_dir/$package_name $output_dir
else
false
fi
;;
tarball|shell|cci|rpm)
if [ ! -d "$install_dir" -o ! -d "$prefix_dir" ]; then
print_fatal "Installed directory or prefix directory not found"
fi
if [ "$package" = "cci" ]; then
package_basename="$product_name-CCI-$version-Linux.$build_target"
else
package_basename="$product_name-$version-Linux.$build_target"
fi
if [ ! "$build_mode" = "release" ]; then
package_basename="$package_basename-$build_mode"
fi
if [ "$package" = "tarball" ]; then
package_name="$package_basename.tar.gz"
(cd $build_dir && cpack -G TGZ -B $output_dir)
elif [ "$package" = "shell" ]; then
package_name="$package_basename.sh"
(cd $build_dir && cpack -G STGZ -B $output_dir)
elif [ "$package" = "cci" ]; then
package_name="$package_basename.tar.gz"
(cd $build_dir && cpack -G TGZ -D CPACK_COMPONENTS_ALL="CCI" -B $output_dir)
elif [ "$package" = "rpm" ]; then
package_name="$package_basename.rpm"
(cd $build_dir && cpack -G RPM -B $output_dir)
fi
if [ $? -eq 0 ]; then
output_packages="$output_packages $package_name"
# clean temp directory for pack
rm -rf $output_dir/_CPack_Packages
else
false
fi
;;
jdbc)
package_name="JDBC-$build_number-$product_name_lower"
jar_files=$(cd $build_dir/jdbc && ls $package_name*.jar)
cp $build_dir/jdbc/$package_name*.jar $output_dir
[ $? -eq 0 ] && output_packages="$output_packages $jar_files"
;;
esac
[ $? -eq 0 ] && print_result "OK [$package_name]" || print_fatal "Packaging for $package failed"
done
}
function build_post ()
{
# post job
echo "[`date +'%F %T'`] Completed"
echo ""
echo "*** Summary ***"
echo " Target [$build_args]"
echo " Version [$version]"
echo " Build mode [$build_target/$build_mode]"
if [ -n "$configure_options" ]; then
echo " Configured with [$configure_options]"
fi
if [ -n "$output_packages" ]; then
echo " Generated packages in [$output_dir]"
for pkg in $(echo $output_packages|tr " " "\n"|sort -u|tr "\n" " "); do
echo " -" $(cd $output_dir && md5sum $pkg)
done
fi
echo ""
}
function show_usage ()
{
echo "Usage: $0 [OPTIONS] [TARGET]"
echo " OPTIONS"
echo " -t arg Set target machine (32(i386) or 64(x86_64)); [default: 64]"
echo " -m Set build mode(release, debug or coverage); [default: release]"
echo " -i Increase build number; [default: no]"
echo " -a Run autogen.sh before build; [default: yes]"
echo " -c opts Set configure options; [default: NONE]"
echo " -s path Set source path; [default: current directory]"
echo " -b path Set build path; [default: <source path>/build_<mode>_<target>]"
echo " -p path Set prefix path; [default: <build_path>/_install/$product_name]"
echo " -o path Set package output path; [default: <build_path>]"
if [ "x$JAVA_HOME" = "x" ]; then
echo " -j path Set JAVA_HOME path; [default: /usr/java/default]"
else
echo " -j path Set JAVA_HOME path; [default: $JAVA_HOME]"
fi
echo " -z arg Package to generate (src,zip_src,shell,tarball,cci,jdbc,rpm,owfs);"
echo " [default: all]"
echo " -? | -h Show this help message and exit"
echo ""
echo " TARGET"
echo " all Build and create packages (default)"
echo " build Build only"
echo " dist Create packages only"
echo ""
echo " EXAMPLES"
echo " $0 # Build and pack all packages (64/release)"
echo " $0 -t 32 build # 32bit release build only"
echo " $0 -t 64 -m debug dist # Create 64bit debug mode packages"
echo ""
}
function get_options ()
{
while getopts ":t:m:is:b:p:o:aj:c:z:h" opt; do
case $opt in
t ) build_target="$OPTARG" ;;
m ) build_mode="$OPTARG" ;;
s ) source_dir="$OPTARG" ;;
b ) build_dir="$OPTARG" ;;
p ) prefix_dir="$OPTARG" ;;
o ) output_dir="$OPTARG" ;;
j ) java_dir="$OPTARG" ;;
c )
for optval in "$OPTARG"
do
configure_options="$configure_options $optval"
done
;;
z )
for optval in "$OPTARG"
do
packages="$packages $optval"
done
;;
h|\?|* ) show_usage; exit 1;;
esac
done
shift $(($OPTIND - 1))
case $build_target in
i386|x86|32|32bit) build_target="i386";;
x86_64|x64|64|64bit) build_target="x86_64";;
*) show_usage; print_fatal "Target [$build_target] is not valid target" ;;
esac
case $build_mode in
release|debug|coverage);;
*) show_usage; print_fatal "Mode [$build_mode] is not valid mode" ;;
esac
if [ "x$build_dir" = "x" ]; then
build_dir="$source_dir/build_${build_target}_${build_mode}"
fi
# convert paths to absolute path
[ ! -d "$build_dir" ] && mkdir -p $build_dir
build_dir=$(readlink -f $build_dir)
install_dir="$build_dir/_install"
[ ! -d "$install_dir" ] && mkdir -p $install_dir
if [ "x$prefix_dir" = "x" ]; then
prefix_dir="$install_dir/$product_name"
else
[ ! -d "$prefix_dir" ] && mkdir -p $prefix_dir
prefix_dir=$(readlink -f $prefix_dir)
fi
source_dir=$(readlink -f $source_dir)
if [ ! -d "$source_dir" ]; then
print_fatal "Source path [$source_dir] is not exist"
fi
[ "x$packages" = "x" ] && packages=$default_packages
for i in $packages; do
if [ "$i" = "all" -o "$i" = "ALL" ]; then
packages="all"
break
fi
done
if [ "$packages" = "all" -o "$packages" = "ALL" ]; then
case $build_mode in
release)
packages="src zip_src tarball shell cci jdbc rpm"
;;
*)
packages="tarball shell cci"
;;
esac
fi
if [ "x$output_dir" = "x" ]; then
output_dir="$build_dir"
fi
[ ! -d "$output_dir" ] && mkdir -p $output_dir
output_dir=$(readlink -f $output_dir)
if [ $# -gt 0 ]; then
build_args="$@"
echo "[`date +'%F %T'`] Build target [$build_args]"
fi
}
function build_dist ()
{
if [ "$build_mode" = "coverage" ]; then
print_error "Pakcages with coverage mode is not supported. Skip"
return 0
fi
build_package
}
function build_build ()
{
build_configure && build_compile && build_install
}
# main
{
get_options "$@"
} &&
{
build_initialize
} &&
{
declare -f target
if [ "$build_args" = "all" -o "$build_args" = "ALL" ]; then
case $build_mode in
release|debug)
build_args="clean build dist"
;;
*)
build_args="clean build"
;;
esac
fi
for i in $build_args; do
target=$i
echo ""
echo "[`date +'%F %T'`] Entering target [$target]"
build_$target
if [ $? -ne 0 ]; then
echo ""
print_fatal "*** [`date +'%F %T'`] Failed target [$target]"
fi
echo ""
echo "[`date +'%F %T'`] Leaving target [$target]"
echo ""
done
} &&
{
build_post
}