mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
bb0b4db228
During e.g. cross-compiling, it is sometimes useful to be able to have another binary than the default one as the compiler. This patch for the build scripts lets "go" be the default value for the variable GO, and the latter is then used as the go compiler. Change-Id: I0adf7a661b26593d9b0ea902a61b631b80e76ae7 Signed-off-by: Joakim Roubert <joakimr@axis.com>
52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
GO=${GO-go}
|
|
ARCH=${ARCH:-$("${GO}" env GOARCH)}
|
|
SUFFIX="-${ARCH}"
|
|
GIT_TAG=$DRONE_TAG
|
|
TREE_STATE=clean
|
|
COMMIT=$DRONE_COMMIT
|
|
|
|
if [ -d .git ]; then
|
|
if [ -z "$GIT_TAG" ]; then
|
|
GIT_TAG=$(git tag -l --contains HEAD | head -n 1)
|
|
fi
|
|
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
|
|
DIRTY="-dirty"
|
|
TREE_STATE=dirty
|
|
fi
|
|
|
|
COMMIT=$(git log -n3 --pretty=format:"%H %ae" | grep -v ' drone@localhost$' | cut -f1 -d\ | head -1)
|
|
if [ -z "${COMMIT}" ]; then
|
|
COMMIT=$(git rev-parse HEAD || true)
|
|
fi
|
|
fi
|
|
|
|
VERSION_CONTAINERD=$(grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}')
|
|
if [ -z "$VERSION_CONTAINERD" ]; then
|
|
VERSION_CONTAINERD="v0.0.0"
|
|
fi
|
|
|
|
VERSION_CRICTL=$(grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}')
|
|
if [ -z "$VERSION_CRICTL" ]; then
|
|
VERSION_CRICTL="v0.0.0"
|
|
fi
|
|
|
|
VERSION_K8S=$(grep k8s.io/kubernetes go.mod | head -n1 | awk '{print $4}' | sed -e 's/[-+].*//')
|
|
if [ -z "$VERSION_K8S" ]; then
|
|
VERSION_K8S="v0.0.0"
|
|
fi
|
|
|
|
VERSION_CNIPLUGINS="v0.7.6-k3s1"
|
|
|
|
if [[ -n "$GIT_TAG" ]]; then
|
|
if [[ ! "$GIT_TAG" =~ ^"$VERSION_K8S"[+-] ]]; then
|
|
echo "Tagged version '$GIT_TAG' does not match expected version '$VERSION_K8S[+-]*'" >&2
|
|
exit 1
|
|
fi
|
|
VERSION=$GIT_TAG
|
|
else
|
|
VERSION="$VERSION_K8S+k3s-${COMMIT:0:8}$DIRTY"
|
|
fi
|
|
VERSION_TAG="$(sed -e 's/+/-/g' <<< "$VERSION")"
|