-
Notifications
You must be signed in to change notification settings - Fork 30
/
build.sh
executable file
·72 lines (57 loc) · 2.2 KB
/
build.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
#! /bin/bash
set -e -o pipefail
# Set which docker repo to use
REPO="${REPO:-gluster}"
# Allow overriding default docker command
RUNTIME_CMD=${RUNTIME_CMD:-docker}
GOLANGCILINT_VERSION="${GOLANGCILINT_VERSION:-1.52.2}"
build="build --load"
if [[ "${RUNTIME_CMD}" == "buildah" ]]; then
build="bud"
fi
# Allow disabling tests during build
RUN_TESTS=${RUN_TESTS:-1}
DRIVER=glusterfs-csi-driver
DOCKERFILE=pkg/glusterfs/Dockerfile
# This sets the version variable to (hopefully) a semver compatible string. We
# expect released versions to have a tag of vX.Y.Z (with Y & Z optional), so we
# only look for those tags. For version info on non-release commits, we want to
# include the git commit info as a "build" suffix ("+stuff" at the end). There
# is also special casing here for when no tags match.
VERSION_GLOB="v[0-9]*"
# Get the nearest "version" tag if one exists. If not, this returns the full
# git hash
NEAREST_TAG="$(git describe --always --tags --match "$VERSION_GLOB" --abbrev=0)"
# Full output of git describe for us to parse: TAG-<N>-g<hash>-<dirty>
FULL_DESCRIBE="$(git describe --always --tags --match "$VERSION_GLOB" --dirty)"
# If full matches against nearest, we found a valid tag earlier
if [[ $FULL_DESCRIBE =~ ${NEAREST_TAG}-(.*) ]]; then
# Build suffix is the last part of describe w/ "-" replaced by "."
VERSION="$NEAREST_TAG+${BASH_REMATCH[1]//-/.}"
else
# We didn't find a valid tag, so assume version 0 and everything ends up
# in build suffix.
VERSION="0.0.0+g${FULL_DESCRIBE//-/.}"
fi
BUILDDATE="$(date -u '+%Y-%m-%dT%H:%M:%S.%NZ')"
build_args=()
build_args+=(--build-arg "RUN_TESTS=$RUN_TESTS")
build_args+=(--build-arg "GOLANGCILINT_VERSION=$GOLANGCILINT_VERSION")
build_args+=(--build-arg "version=$VERSION")
build_args+=(--build-arg "builddate=$BUILDDATE")
# Print Docker version
echo "=== $RUNTIME_CMD version ==="
$RUNTIME_CMD version
#-- Build glusterfs csi driver container
$RUNTIME_CMD $build \
-t "${REPO}/${DRIVER}" \
"${build_args[@]}" \
-f "$DOCKERFILE" \
. ||
exit 1
# If running tests, extract profile data
if [ "$RUN_TESTS" -ne 0 ]; then
rm -f profile.cov
$RUNTIME_CMD run --entrypoint cat "${REPO}/${DRIVER}" \
/profile.cov > profile.cov
fi