forked from hootrhino/rulex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_pkg.sh
165 lines (148 loc) · 4.23 KB
/
release_pkg.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
#! /bin/bash
set -e
RESPOSITORY="https://github.com/i4de"
#
create_pkg() {
VERSION=$(git describe --tags --always --abbrev=0)
echo "Create package: ${rulex-$1-${VERSION}}"
if [ "$1" == "x64windows" ]; then
zip -r _release/rulex-$1-${VERSION}.zip \
./rulex-$1.exe \
./conf/rulex.ini
rm -rf ./rulex-$1.exe
else
zip -r _release/rulex-$1-${VERSION}.zip \
./rulex-$1 \
./script/crulex.sh \
./conf/rulex.ini
rm -rf ./rulex-$1
fi
}
#
make_zip() {
if [ -n $1 ]; then
create_pkg $1
else
echo "Should have release target."
exit 1
fi
}
#
build_x64windows() {
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc \
go build -ldflags "-s -w" -o rulex-$1.exe main.go
}
build_x86linux() {
CGO_ENABLED=1 GOOS=linux GO386=softfloat \
go build -ldflags "-s -w" -o rulex-$1 main.go
}
build_x64linux() {
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 \
go build -ldflags "-s -w" -o rulex-$1 main.go
}
build_arm64linux() {
CGO_ENABLED=1 GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc \
go build -ldflags "-s -w" -o rulex-$1 main.go
}
build_arm32linux() {
CGO_ENABLED=1 GOARM=7 GOOS=linux GOARCH=arm CC=arm-linux-gnueabi-gcc \
go build -ldflags "-s -w -linkmode external -extldflags -static" -o rulex-$1 main.go
}
#------------------------------------------
cross_compile() {
ARCHS=("x64windows" "x86linux" "x64linux" "arm64linux" "arm32linux")
if [ ! -d "./_release/" ]; then
mkdir -p ./_release/
else
rm -rf ./_release/
mkdir -p ./_release/
fi
for arch in ${ARCHS[@]}; do
echo "Compile target => ["$arch"]"
if [[ "${arch}" == "x64windows" ]]; then
# sudo apt install gcc-mingw-w64-x86-64 -y
build_x64windows $arch
make_zip $arch
echo "Compile target => ["$arch"] Ok."
fi
if [[ "${arch}" == "x86linux" ]]; then
build_x86linux $arch
make_zip $arch
echo "Compile target => ["$arch"] Ok."
fi
if [[ "${arch}" == "x64linux" ]]; then
build_x64linux $arch
make_zip $arch
echo "Compile target => ["$arch"] Ok."
fi
if [[ "${arch}" == "arm64linux" ]]; then
# sudo apt install gcc-arm-linux-gnueabi -y
build_arm64linux $arch
make_zip $arch
echo "Compile target => ["$arch"] Ok."
fi
if [[ "${arch}" == "arm32linux" ]]; then
# sudo apt install gcc-arm-linux-gnueabi -y
build_arm32linux $arch
make_zip $arch
echo "Compile target => ["$arch"] Ok."
fi
done
}
#
# fetch dashboard
#
fetch_dashboard() {
VERSION=$(git describe --tags --always --abbrev=0)
wget -q --show-progress ${RESPOSITORY}/rulex-dashboard/releases/download/${VERSION}/${VERSION}.zip
unzip -q ${VERSION}.zip
cp -r ./dist/* ./plugin/http_server/www
}
#
# gen_changelog
#
gen_changelog() {
PreviewVersion=$(git describe --tags --abbrev=0 $(git rev-list --tags --skip=1 --max-count=1))
CurrentVersion=$(git describe --tags --abbrev=0)
echo "----------------------------------------------------------------"
echo "| Change log between [${PreviewVersion}] <--> [${CurrentVersion}]"
echo "----------------------------------------------------------------"
ChangeLog=$(git log ${PreviewVersion}..${CurrentVersion} --oneline --decorate --color)
printf "${ChangeLog}\n"
}
#
#-----------------------------------
#
init_env() {
if [ ! -d "./_build/" ]; then
mkdir -p ./_build/
else
rm -rf ./_build/
mkdir -p ./_build/
fi
}
#
# 检查是否安装了这些软件
#
check_cmd() {
DEPS=("git" "jq" "gcc" "make")
for dep in ${DEPS[@]}; do
echo ">>> Check dependcy command: $dep"
if ! [ -x "$(command -v $dep)" ]; then
echo "||| Error: $dep is not installed."
exit 1
else
echo ">>> $dep has been installed."
fi
done
}
#
#-----------------------------------
#
check_cmd
init_env
cp -r $(ls | egrep -v '^_build$') ./_build/
cd ./_build/
fetch_dashboard
cross_compile
gen_changelog