k3s/scripts/version.sh

40 lines
997 B
Bash
Raw Normal View History

2019-01-01 08:23:01 +00:00
#!/bin/bash
2019-12-17 19:21:47 +00:00
TREE_STATE=clean
2019-01-01 08:23:01 +00:00
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
DIRTY="-dirty"
2019-12-17 19:21:47 +00:00
TREE_STATE=dirty
2019-01-01 08:23:01 +00:00
fi
COMMIT=$(git rev-parse --short HEAD)
2019-12-17 19:21:47 +00:00
LONG_COMMIT=$(git rev-parse HEAD)
2019-01-01 08:23:01 +00:00
GIT_TAG=${DRONE_TAG:-$(git tag -l --contains HEAD | head -n 1)}
2019-01-09 16:54:15 +00:00
ARCH=$(go env GOARCH)
SUFFIX="-${ARCH}"
2019-11-12 23:36:04 +00:00
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
2019-12-12 01:28:40 +00:00
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
2019-12-12 01:28:40 +00:00
VERSION_K8S=$(grep k8s.io/kubernetes go.mod | head -n1 | awk '{print $4}')
if [ -z "$VERSION_K8S" ]; then
VERSION_K8S="v0.0.0"
fi
VERSION_CNIPLUGINS="v0.7.6-k3s1"
2019-12-12 01:28:40 +00:00
if [[ -n "$GIT_TAG" ]]; then
VERSION=$GIT_TAG
else
2019-12-17 19:21:47 +00:00
VERSION="$(sed -e 's/[-+].*//' <<< "$VERSION_K8S")+$COMMIT$DIRTY"
2019-12-12 01:28:40 +00:00
fi
2019-12-18 06:29:05 +00:00
VERSION_TAG="$(sed -e 's/+/-/g' <<< "$VERSION")"