-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathrelease_default_linux_spark246.sh
executable file
·67 lines (56 loc) · 2.45 KB
/
release_default_linux_spark246.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
#!/usr/bin/env bash
#
# Copyright 2016 The BigDL Authors.
#
# Licensed 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 is the default script with maven parameters to release all the bigdl sub-packages
# built on top of Spark 2.4.6 for linux.
set -e
RUN_SCRIPT_DIR=$(cd $(dirname $0) ; pwd)
echo $RUN_SCRIPT_DIR
BIGDL_DIR="$(cd ${RUN_SCRIPT_DIR}/../..; pwd)"
echo $BIGDL_DIR
if (( $# < 3)); then
echo "Usage: release_default_linux_spark246.sh version quick_build upload suffix mvn_parameters"
echo "Usage example: bash release_default_linux_spark246.sh default false true true"
echo "Usage example: bash release_default_linux_spark246.sh 0.14.0.dev1 false false true"
echo "Usage example: bash release_default_linux_spark246.sh 0.14.0.dev1 false false false -Ddata-store-url=.."
exit -1
fi
version=$1
quick=$2
upload=$3
if (( $# < 4)); then
suffix=false
profiles=${*:4}
else
suffix=$4
profiles=${*:5}
fi
# Nano and serving are released in release_default_linux.sh as they don't rely on spark versions.
# Only dllib is not using quick build.
# Since make_dist is invoked in dllib, all other packages can directly use quick build.
DLLIB_SCRIPT_DIR="$(cd ${BIGDL_DIR}/python/dllib/dev/release; pwd)"
echo $DLLIB_SCRIPT_DIR
bash ${DLLIB_SCRIPT_DIR}/release_default_linux_spark246.sh ${version} ${quick} ${upload} ${suffix} ${profiles}
ORCA_SCRIPT_DIR="$(cd ${BIGDL_DIR}/python/orca/dev/release; pwd)"
echo $ORCA_SCRIPT_DIR
bash ${ORCA_SCRIPT_DIR}/release_default_linux_spark246.sh ${version} true ${upload} ${suffix}
FRIESIAN_SCRIPT_DIR="$(cd ${BIGDL_DIR}/python/friesian/dev/release; pwd)"
echo $FRIESIAN_SCRIPT_DIR
bash ${FRIESIAN_SCRIPT_DIR}/release_default_linux_spark246.sh ${version} true ${upload} ${suffix}
CHRONOS_SCRIPT_DIR="$(cd ${BIGDL_DIR}/python/chronos/dev/release; pwd)"
echo $CHRONOS_SCRIPT_DIR
bash ${CHRONOS_SCRIPT_DIR}/release_default_linux_spark246.sh ${version} ${upload} ${suffix}
bash ${RUN_SCRIPT_DIR}/release_bigdl_spark2.sh linux ${version} ${upload} ${suffix}