forked from dxFeed/dxfeed-c-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_package.sh
executable file
·181 lines (151 loc) · 5.29 KB
/
make_package.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
#!/bin/sh
# Script builds, tests and makes package.
# Script build all targets from CMakeLists.txt by successively calling
# build.sh for next configurations: Debug x86, Release x86, Debug x64, Release x64.
# If one of configurations fail the process stopped.
# Usage:
# make_package <major>.<minor>[.<patch>] [rebuild|clean] [no-test] [no-tls] [static]
# Where
# <major>.<minor>[.<patch>] - Version of package, i.e. 1.2.6
# clean - removes build directory
# rebuild - performs clean and build
# no-test - build testing will not be started
# no-tls - build without TLS support
# static - build the framework as a static library, static samples and tests (without TLS support)
#
# The operation order:
# 1. Build sources in next configurations Debug x86, Release x86,
# Debug x64, Release x64. The result of build is located into the
# BUILD_DIR directory. Building performes with build.sh script from
# current directory where this script is located.
# 2. Run tests of build with scripts\check_build.sh.
# 3. Create individual packages for each configuration with
# scripts\combine_package.sh. Then create the target package which
# will be placed into BUILD_DIR directory.
# Dependencies:
# 1. CMake x64 + CPack
# 2. 7z
print_usage() {
echo "Usage: $0 <major>.<minor>[.<patch>] [rebuild|clean] [no-test] [no-tls] [static]"
echo " <major>.<minor>[.<patch>] - Version of package, i.e. 1.2.6"
echo " clean - removes build directory"
echo " rebuild - performs clean and build"
echo " no-test - build tests will not be started"
echo " no-tls - build without TLS support"
echo " static - build the framework as a static library, static samples and tests (without TLS support)"
}
# Check cmake application in PATH
which cmake > /dev/null
if [ $? -ne 0 ]; then
echo "The 'cmake' application is missing. Ensure it is installed and placed in your PATH."
exit 1
fi
#rem Check cpack application in PATH
which cpack > /dev/null
if [ $? -ne 0 ]; then
echo "The 'cpack' application is missing. Ensure it is installed and placed in your PATH."
exit 2
fi
# Check 7z archiver in PATH
which 7z > /dev/null
if [ $? -ne 0 ]; then
echo "The '7z' application is missing. Ensure it is installed and placed in your PATH."
exit 3
fi
VERSION="$1"
DO_TEST=1
BUILD_DIR="$(pwd)/build"
PROJECT_NAME="DXFeedAll"
PACKAGE_WORK_DIR="_CPack_Packages"
TARGET_PACKAGE="dxfeed-c-api-$VERSION"
NO_TLS=""
BUILD_STATIC_LIBS=""
PACKAGE_SUFFIX=""
#PLATFORMS="x64 x86"
PLATFORMS="x64"
CONFIGURATIONS="Debug Release"
for A in "$@"; do
if [ "$A" = "clean" ]; then
./build.sh clean
exit 0
elif [ "$A" = "rebuild" ]; then
./build.sh clean
elif [ "$A" = "no-test" ]; then
DO_TEST=0
elif [ "$A" = "no-tls" ]; then
NO_TLS="no-tls"
if [ "$PACKAGE_SUFFIX" = "" ]; then
PACKAGE_SUFFIX="-no-tls"
fi
elif [ "$A" = "static" ]; then
BUILD_STATIC_LIBS="static"
PACKAGE_SUFFIX="-static-no-tls"
fi
done
# Check version parameter
if [ "$VERSION" = "" ]; then
echo "ERROR: The version of package is not specified or invalid!"
print_usage
echo "Making package failed! $?"
exit 4
fi
echo "Start building package $VERSION"
# === UPDATE VERSION ===
APP_VERSION=$VERSION
# === BUILD ALL TARGETS ===
export APP_VERSION
for P in $PLATFORMS; do
for C in $CONFIGURATIONS; do
echo "./build.sh $C $P $NO_TLS $BUILD_STATIC_LIBS"
./build.sh $C $P $NO_TLS $BUILD_STATIC_LIBS
if [ $? -ne 0 ]; then
echo "Making package failed! $?"
exit $?
fi
done
done
# === TEST BUILDS ===
if [ $DO_TEST -eq 1 ]; then
echo "Start checking build $VERSION"
scripts/check_build.sh $BUILD_DIR
if [ $? -ne 0 ]; then
echo "Making package failed! $?"
exit $?
fi
else
echo "Build checking will be skipped."
fi
# === MAKE PACKAGE ===
echo "Start make release package $VERSION"
HOME_DIR=$(pwd)
cd $BUILD_DIR
export PACKAGE_WORK_DIR
for P in $PLATFORMS; do
for C in $CONFIGURATIONS; do
echo "$HOME_DIR/scripts/combine_package.sh $PROJECT_NAME $C $P $VERSION $NO_TLS $BUILD_STATIC_LIBS $PACKAGE_WORK_DIR"
$HOME_DIR/scripts/combine_package.sh $PROJECT_NAME $C $P $VERSION $NO_TLS $BUILD_STATIC_LIBS
if [ $? -ne 0 ]; then
cd $HOME_DIR
echo "Making package failed! $?"
exit $?
fi
done
done
if [ ! -d $PACKAGE_WORK_DIR ]; then
mkdir $PACKAGE_WORK_DIR
fi
cd $PACKAGE_WORK_DIR
if [ -d $TARGET_PACKAGE$PACKAGE_SUFFIX ]; then
rm -rf $TARGET_PACKAGE$PACKAGE_SUFFIX
fi
mkdir $TARGET_PACKAGE$PACKAGE_SUFFIX
for P in $PLATFORMS; do
cp -rf $PROJECT_NAME-$VERSION-$P$PACKAGE_SUFFIX $TARGET_PACKAGE$PACKAGE_SUFFIX
echo "$PROJECT_NAME-$VERSION-$P$PACKAGE_SUFFIX -> $TARGET_PACKAGE$PACKAGE_SUFFIX"
done
7z a $TARGET_PACKAGE$PACKAGE_SUFFIX.zip $TARGET_PACKAGE$PACKAGE_SUFFIX
mv -f $TARGET_PACKAGE$PACKAGE_SUFFIX.zip $BUILD_DIR/$TARGET_PACKAGE$PACKAGE_SUFFIX.zip
cd $HOME_DIR
# === FINISH ===
echo "Making package complete successfully."
exit 0