2018-07-03 20:10:13 +03:00
|
|
|
#!/usr/bin/env bash
|
2018-06-29 16:09:21 +03:00
|
|
|
|
2021-12-14 23:31:44 +03:00
|
|
|
# Outputs a version name for the hasura servers and their components, given the
|
|
|
|
# checked out state of the repo:
|
|
|
|
# - if HEAD has a tag, return that
|
|
|
|
# - else return a combination of branch and SHA hash
|
|
|
|
#
|
|
|
|
# In both of above we strip any non alpha-numeric, excluding: ._-
|
|
|
|
#
|
|
|
|
# This is called in a compile time macro to bake the version into the server
|
|
|
|
# binaries, and also at various points during CI (and must agree every time).
|
|
|
|
|
2018-07-03 20:10:13 +03:00
|
|
|
GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
GIT_SHA="$(git rev-parse --short HEAD)"
|
2021-12-14 23:31:44 +03:00
|
|
|
# NOTE: a commit may have multiple tags; this should return the most recent
|
|
|
|
# result of `git tag` if any:
|
2018-07-03 20:10:13 +03:00
|
|
|
GIT_TAG_EXACT="$(git describe --tags --exact-match --dirty 2>/dev/null)"
|
|
|
|
GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "-dirty" || echo "")
|
2018-06-29 16:09:21 +03:00
|
|
|
|
2018-07-03 20:10:13 +03:00
|
|
|
VERSION="${GIT_TAG_EXACT}"
|
|
|
|
test -n "$VERSION" || VERSION="${GIT_BRANCH}-${GIT_SHA}${GIT_DIRTY}"
|
2018-06-29 16:09:21 +03:00
|
|
|
|
2018-07-10 14:52:13 +03:00
|
|
|
VERSION="$(echo $VERSION | tr -cd '[[:alnum:]]._-')"
|
|
|
|
|
2021-12-14 23:31:44 +03:00
|
|
|
# Sanity check: currently some parts of CI reference BUILDKITE_TAG, others call
|
|
|
|
# this script again and these must agree.
|
|
|
|
if [ -n "$BUILDKITE_TAG" ] && [ "$VERSION" != "$BUILDKITE_TAG" ]; then
|
|
|
|
echo "BUILDKITE_TAG is set as \"$BUILDKITE_TAG\" but somehow does not agree with repo tag \"$VERSION\"!" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$VERSION"
|