forked from portainer/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·63 lines (51 loc) · 1.43 KB
/
release.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
#!/usr/bin/env bash
# Requires:
# * Go SDK (version >= 1.11)
ARCHIVE_BUILD_FOLDER="/tmp/portainer-builds"
MAIN="cmd/agent/main.go"
if [[ $# -ne 1 ]] ; then
echo "Usage: $(basename $0) <VERSION>"
exit 1
fi
VERSION=$1
function clean() {
rm -rf dist/*
}
function build_and_push_image() {
docker build -t "portainer/agent:${1}-${VERSION}" -f build/linux/Dockerfile .
docker tag "portainer/agent:${1}-${VERSION}" "portainer/agent:${1}"
docker push "portainer/agent:${1}-${VERSION}"
docker push "portainer/agent:${1}"
}
function build_archive() {
BUILD_FOLDER="${ARCHIVE_BUILD_FOLDER}/$1"
rm -rf ${BUILD_FOLDER} && mkdir -pv ${BUILD_FOLDER}/agent
mv dist/* ${BUILD_FOLDER}/agent/
cd ${BUILD_FOLDER}
tar cvpfz "portainer-agent-${VERSION}-$1.tar.gz" agent
mv "portainer-agent-${VERSION}-$1.tar.gz" ${ARCHIVE_BUILD_FOLDER}/
cd -
}
function build_binary() {
platform=$1
arch=$2
GOOS="${platform}" GOARCH="${arch}" CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s' "${MAIN}"
mv main "dist/agent"
}
function build_all() {
for tag in $@; do
os=`echo ${tag} | cut -d \- -f 1`
arch=`echo ${tag} | cut -d \- -f 2`
build_binary "${os}" "${arch}"
if [ `echo $tag | cut -d \- -f 1` == 'linux' ]
then
build_and_push_image "${tag}"
else
build_archive "$tag"
fi
clean
done
}
mkdir dist
build_all 'linux-amd64 linux-arm linux-arm64 linux-ppc64le linux-s390x windows-amd64'
exit 0