-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.sh
115 lines (95 loc) · 3.38 KB
/
common.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
#!/bin/bash -e
# Copyright 2016 The Rook Authors. All rights reserved.
#
# 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.
BUILD_HOST=$(hostname)
BUILD_REPO=github.com/rook/rook
BUILD_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd -P)
SHA256CMD=${SHA256CMD:-shasum -a 256}
BUILD_REGISTRY=build-$(echo ${BUILD_HOST}-${BUILD_ROOT} | ${SHA256CMD} | cut -c1-8)
DOCKERCMD=${DOCKERCMD:-docker}
OUTPUT_DIR=${BUILD_ROOT}/_output
WORK_DIR=${BUILD_ROOT}/.work
CACHE_DIR=${BUILD_ROOT}/.cache
KUBEADM_DIND_DIR=${CACHE_DIR}/kubeadm-dind
CROSS_IMAGE=${BUILD_REGISTRY}/cross-amd64
CROSS_IMAGE_VOLUME=cross-volume
CROSS_RSYNC_PORT=10873
function ver() {
printf "%d%03d%03d%03d" $(echo "$1" | tr '.' ' ')
}
function check_git() {
# git version 2.6.6+ through 2.8.3 had a bug with submodules. this makes it hard
# to share a cloned directory between host and container
# see https://github.com/git/git/blob/master/Documentation/RelNotes/2.8.3.txt#L33
local gitversion=$(git --version | cut -d" " -f3)
if (( $(ver ${gitversion}) > $(ver 2.6.6) && $(ver ${gitversion}) < $(ver 2.8.3) )); then
echo WARN: your running git version ${gitversion} which has a bug realted to relative
echo WARN: submodule paths. Please consider upgrading to 2.8.3 or later
fi
}
function start_rsync_container() {
${DOCKERCMD} run \
-d \
-e OWNER=root \
-e GROUP=root \
-e MKDIRS="/volume/go/src/${BUILD_REPO}" \
-p ${CROSS_RSYNC_PORT}:873 \
-v ${CROSS_IMAGE_VOLUME}:/volume \
--entrypoint "/tini" \
${CROSS_IMAGE} \
-- /build/rsyncd.sh
}
function wait_for_rsync() {
# wait for rsync to come up
local tries=100
while (( ${tries} > 0 )) ; do
if rsync "rsync://localhost:${CROSS_RSYNC_PORT}/" &> /dev/null ; then
return 0
fi
tries=$(( ${tries} - 1 ))
sleep 0.1
done
echo ERROR: rsyncd did not come up >&2
exit 1
}
function stop_rsync_container() {
local id=$1
${DOCKERCMD} stop ${id} &> /dev/null || true
${DOCKERCMD} rm ${id} &> /dev/null || true
}
function run_rsync() {
local src=$1
shift
local dst=$1
shift
# run the container as an rsyncd daemon so that we can copy the
# source tree to the container volume.
local id=$(start_rsync_container)
# wait for rsync to come up
wait_for_rsync || stop_rsync_container ${id}
# NOTE: add --progress to show files being syncd
rsync \
--archive \
--delete \
--prune-empty-dirs \
"$@" \
$src $dst || { stop_rsync_container ${id}; return 1; }
stop_rsync_container ${id}
}
function rsync_host_to_container() {
run_rsync ${scriptdir}/.. rsync://localhost:${CROSS_RSYNC_PORT}/volume/go/src/${BUILD_REPO} "$@"
}
function rsync_container_to_host() {
run_rsync rsync://localhost:${CROSS_RSYNC_PORT}/volume/go/src/${BUILD_REPO}/ ${scriptdir}/.. "$@"
}