-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·76 lines (65 loc) · 1.39 KB
/
Copy pathbuild.sh
File metadata and controls
executable file
·76 lines (65 loc) · 1.39 KB
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
#!/bin/bash
#
# Copyright 2024 Enflame. All Rights Reserved.
#
if [ -f "../../g_version.txt" ]; then
source ../../g_version.txt
fi
PKG_VER=${GCUSHARE_VERSION:-"0.0.0"}
function usage() {
cat <<EOF
Usage: ./build.sh [command]
Command:
all Build the gcushare
clean Clean the gcushare
Example:
./build.sh all
./build.sh clean
EOF
}
function build_all() {
# clean old dist if exist
if [ -d "./dist" ]; then
clean_all
fi
echo -e "\033[33mBuilding gcushare package start...\033[0m"
PKG_DIR="dist/gcushare_$PKG_VER"
mkdir -p $PKG_DIR
cd gcushare-device-plugin
./build.sh all
cp -rf dist/* ../$PKG_DIR/
rm -rf dist
cd -
cd gcushare-scheduler-plugin
./build.sh all
cp -rf dist/* ../$PKG_DIR/
rm -rf dist
cd -
echo -e "\033[33mBuilding gcushare package successfully!\033[0m"
}
function clean_all() {
if [ -d "./dist" ]; then
rm -rf ./dist
fi
cd gcushare-device-plugin
./build.sh clean
cd -
cd gcushare-scheduler-plugin
./build.sh clean
cd -
echo -e "\033[33mClean gcushare package successfully.\033[0m"
}
function main() {
[[ "$EUID" -ne 0 ]] && { echo "[INFO] Run as non-root"; }
[[ "$#" -lt 1 ]] && { usage >&2; exit 1; }
case $1 in
"clean")
clean_all;;
"all")
build_all;;
*)
usage
exit 1;;
esac
}
main "$@"