forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·121 lines (104 loc) · 2.93 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
#!/usr/bin/env bash
# Copyright (c) 2017, Baidu.com, Inc. All Rights Reserved
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
##############################################################
# This script is used to compile Palo.
# Usage:
# sh build.sh build both Backend and Frontend.
# sh build.sh -clean clean previous output and build.
#
# You need to make sure all thirdparty libraries have been
# compiled and installed correctly.
##############################################################
set -eo pipefail
ROOT=`dirname "$0"`
ROOT=`cd "$ROOT"; pwd`
export PALO_HOME=$ROOT
PARALLEL=4
# Check java version
if [ -z $JAVA_HOME ]; then
echo "Error: JAVA_HOME is not set."
exit 1
fi
JAVA=${JAVA_HOME}/bin/java
JAVA_VER=$(${JAVA} -version 2>&1 | sed 's/.* version "\(.*\)\.\(.*\)\..*"/\1\2/; 1q')
if [[ $JAVA_VER < 18 ]]; then
echo "Require JAVA with JDK version at least 1.8"
exit 1
fi
# Check ant
if ! ant -version; then
echo "ant is not found."
exit 1
fi
cd ${PALO_HOME}
# Check args
CLEAN_ALL=0
if [ $# -ne 0 ]; then
if [ "$1"x == "-clean"x ]; then
CLEAN_ALL=1
fi
fi
echo "CLEAN_ALL: "${CLEAN_ALL}
# Clean and build generated code
echo "Build generated code"
cd ${PALO_HOME}/gensrc
if [ ${CLEAN_ALL} -eq 1 ]; then
make clean
fi
make
cd ${PALO_HOME}
# Clean and build Backend
echo "Build Backend"
if [ ${CLEAN_ALL} -eq 1 ]; then
rm ${PALO_HOME}/be/build/ -rf
rm ${PALO_HOME}/be/output/ -rf
fi
mkdir -p ${PALO_HOME}/be/build/
cd ${PALO_HOME}/be/build/
cmake ../
make -j${PARALLEL}
make install
cd ${PALO_HOME}
# Build docs, should be built before Frontend
echo "Build docs"
cd ${PALO_HOME}/docs
if [ ${CLEAN_ALL} -eq 1 ]; then
make clean
fi
make
cd ${PALO_HOME}
# Clean and build Frontend
echo "Build Frontend"
cd ${PALO_HOME}/fe
if [ ${CLEAN_ALL} -eq 1 ]; then
ant clean
fi
ant install
cd ${PALO_HOME}
# Clean and prepare output dir
PALO_OUTPUT=${PALO_HOME}/output/
rm -rf ${PALO_OUTPUT}
mkdir -p ${PALO_OUTPUT}
#Copy Frontend and Backend
cp -R ${PALO_HOME}/fe/output ${PALO_OUTPUT}/fe
cp -R ${PALO_HOME}/be/output ${PALO_OUTPUT}/be
echo "***************************************"
echo "Successfully build Palo."
echo "***************************************"
exit 0