forked from goodrain/rainbond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.sh
executable file
·138 lines (127 loc) · 3.76 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
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
#!/bin/bash
set -o errexit
# define package name
WORK_DIR=/go/src/github.com/goodrain/rainbond
BASE_NAME=rainbond
IMAGE_BASE_NAME=${BUILD_IMAGE_BASE_NAME:-'rainbond'}
DOMESTIC_NAMESPACE=${DOMESTIC_NAMESPACE:-'goodrain'}
GO_VERSION=1.13
GOPROXY=${GOPROXY:-'https://goproxy.io'}
if [ "$DISABLE_GOPROXY" == "true" ]; then
GOPROXY=
fi
if [ -z "$GOOS" ]; then
GOOS="linux"
fi
if [ "$DEBUG" ]; then
set -x
fi
BRANCH=$(git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3)
if [ -z "$VERSION" ]; then
if [ -z "$TRAVIS_TAG" ]; then
if [ -z "$TRAVIS_BRANCH" ]; then
VERSION=$BRANCH-dev
else
VERSION=$TRAVIS_BRANCH-dev
fi
else
VERSION=$TRAVIS_TAG
fi
fi
buildTime=$(date +%F-%H)
git_commit=$(git log -n 1 --pretty --format=%h)
release_desc=${VERSION}-${git_commit}-${buildTime}
build_items=(api chaos gateway monitor mq webcli worker eventlog init-probe mesh-data-panel grctl node resource-proxy)
build::binary() {
echo "---> build binary:$1"
home=$(pwd)
local go_mod_cache="${home}/.cache"
local OUTPATH="./_output/binary/$GOOS/${BASE_NAME}-$1"
local DOCKER_PATH="./hack/contrib/docker/$1"
local build_image="golang:${GO_VERSION}"
local build_args="-w -s -X github.com/goodrain/rainbond/cmd.version=${release_desc}"
local build_dir="./cmd/$1"
local build_tag=""
if [ -f "${DOCKER_PATH}/ignorebuild" ]; then
return
fi
CGO_ENABLED=1
if [ "$1" = "eventlog" ]; then
docker build -t goodraim.me/event-build:v1 "${DOCKER_PATH}/build"
build_image="goodraim.me/event-build:v1"
elif [ "$1" = "chaos" ]; then
build_dir="./cmd/builder"
elif [ "$1" = "gateway" ]; then
build_image="golang:1.13-alpine"
elif [ "$1" = "monitor" ]; then
CGO_ENABLED=0
fi
docker run --rm -e CGO_ENABLED=${CGO_ENABLED} -e GOPROXY=${GOPROXY} -e GOOS="${GOOS}" -v "${go_mod_cache}":/go/pkg/mod -v "$(pwd)":${WORK_DIR} -w ${WORK_DIR} ${build_image} go build -ldflags "${build_args}" -tags "${build_tag}" -o "${OUTPATH}" ${build_dir}
if [ "$GOOS" = "windows" ]; then
mv "$OUTPATH" "${OUTPATH}.exe"
fi
}
build::image() {
local OUTPATH="./_output/binary/$GOOS/${BASE_NAME}-$1"
local build_image_dir="./_output/image/$1/"
local source_dir="./hack/contrib/docker/$1"
mkdir -p "${build_image_dir}"
chmod 777 "${build_image_dir}"
if [ ! -f "${source_dir}/ignorebuild" ]; then
if [ !${CACHE} ] || [ ! -f "${OUTPATH}" ]; then
build::binary "$1"
fi
cp "${OUTPATH}" "${build_image_dir}"
fi
cp -r ${source_dir}/* "${build_image_dir}"
pushd "${build_image_dir}"
echo "---> build image:$1"
docker build --build-arg RELEASE_DESC="${release_desc}" -t "${IMAGE_BASE_NAME}/rbd-$1:${VERSION}" -f Dockerfile .
docker run --rm "${IMAGE_BASE_NAME}/rbd-$1:${VERSION}" version
if [ $? -ne 0 ]; then
echo "image version is different ${release_desc}"
exit 1
fi
if [ -f "${source_dir}/test.sh" ]; then
"${source_dir}/test.sh" "${IMAGE_BASE_NAME}/rbd-$1:${VERSION}"
fi
if [ "$2" = "push" ]; then
if [ $DOCKER_USERNAME ]; then
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
fi
docker push "${IMAGE_BASE_NAME}/rbd-$1:${VERSION}"
if [ "${DOMESTIC_BASE_NAME}" ]; then
docker tag "${IMAGE_BASE_NAME}/rbd-$1:${VERSION}" "${DOMESTIC_BASE_NAME}/${DOMESTIC_NAMESPACE}/rbd-$1:${VERSION}"
docker login -u "$DOMESTIC_DOCKER_USERNAME" -p "$DOMESTIC_DOCKER_PASSWORD" "${DOMESTIC_BASE_NAME}"
docker push "${DOMESTIC_BASE_NAME}/${DOMESTIC_NAMESPACE}/rbd-$1:${VERSION}"
fi
fi
popd
rm -rf "${build_image_dir}"
}
build::image::all() {
for item in "${build_items[@]}"; do
build::image "$item" "$1"
done
}
build::binary::all() {
for item in "${build_items[@]}"; do
build::binary "$item" "$1"
done
}
case $1 in
binary)
if [ "$2" = "all" ]; then
build::binary::all "$2"
else
build::binary "$2"
fi
;;
*)
if [ "$1" = "all" ]; then
build::image::all "$2"
else
build::image "$1" "$2"
fi
;;
esac