5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 03:42:32 +00:00
yggdrasil-go/contrib/semver/version.sh

63 lines
1.7 KiB
Bash
Raw Normal View History

2018-03-05 19:34:23 +00:00
#!/bin/sh
# Merge commits from this branch are counted
DEVELOPBRANCH="yggdrasil-network/develop"
2018-03-05 19:34:23 +00:00
# Get the last tag
TAG=$(git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.0" 2>/dev/null)
2018-03-05 19:34:23 +00:00
# Get last merge to master
MERGE=$(git rev-list $TAG..master --grep "from $DEVELOPBRANCH" 2>/dev/null | head -n 1)
# Get the number of merges since the last merge to master
PATCH=$(git rev-list $TAG..master --count --merges --grep="from $DEVELOPBRANCH" 2>/dev/null)
2018-03-05 19:34:23 +00:00
2018-12-08 10:51:31 +00:00
# Decide whether we should prepend the version with "v" - the default is that
# we do because we use it in git tags, but we might not always need it
PREPEND="v"
if [ "$1" == "--bare" ]; then
PREPEND=""
fi
2018-03-05 20:06:38 +00:00
# If it fails then there's no last tag - go from the first commit
if [ $? != 0 ]; then
PATCH=$(git rev-list HEAD --count 2>/dev/null)
2018-03-05 19:34:23 +00:00
2018-12-07 22:17:09 +00:00
# Complain if the git history is not available
if [ $? != 0 ]; then
printf 'unknown'
2018-12-08 10:33:33 +00:00
exit 1
fi
2018-12-08 10:51:31 +00:00
printf '%s0.0.%d' "$PREPEND" "$PATCH"
2018-12-08 10:33:33 +00:00
exit 1
2018-03-05 19:34:23 +00:00
fi
# Get the number of merges on the current branch since the last tag
BUILD=$(git rev-list $TAG..HEAD --count --merges)
2018-03-05 19:34:23 +00:00
# Split out into major, minor and patch numbers
MAJOR=$(echo $TAG | cut -c 2- | cut -d "." -f 1)
MINOR=$(echo $TAG | cut -c 2- | cut -d "." -f 2)
2018-03-05 19:34:23 +00:00
# Get the current checked out branch
BRANCH=$(git rev-parse --abbrev-ref HEAD)
2018-03-05 19:34:23 +00:00
# Output in the desired format
2018-12-03 17:49:03 +00:00
if [ $PATCH = 0 ]; then
if [ ! -z $FULL ]; then
2018-12-08 10:51:31 +00:00
printf '%s%d.%d.0' "$PREPEND" "$MAJOR" "$MINOR"
else
2018-12-08 10:51:31 +00:00
printf '%s%d.%d' "$PREPEND" "$MAJOR" "$MINOR"
fi
else
2018-12-08 10:51:31 +00:00
printf '%s%d.%d.%d' "$PREPEND" "$MAJOR" "$MINOR" "$PATCH"
fi
# Add the build tag on non-master branches
if [ $BRANCH != "master" ]; then
if [ $BUILD != 0 ]; then
printf -- "-%04d" "$BUILD"
fi
fi