forked from sauce-archives/isign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.sh
executable file
·52 lines (46 loc) · 1.79 KB
/
version.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
#!/bin/bash
# Figures out what the current version is, echoes that back,
# and also writes a `version.json` file into the package.
set -e
MAJMIN_VERSION="1.5"
pushd $(dirname $0) >/dev/null
working_dir=$PWD
name=$(basename $PWD)
popd >/dev/null
package=$(echo $name | sed 's/-/_/g')
version_json="${working_dir}/${package}/version.json"
version_suffix=""
# official version
if [[ "$JOB_NAME" = "${name}" ]] && [[ -n "$BUILD_TAG" ]]; then
patch_version=0
if [[ -n "$(git tag --list v$MAJMIN_VERSION.0)" ]]; then
# number of commits since vMAJOR.MINOR.0
patch_version=$(git rev-list --count $(git describe --tags --match "v${MAJMIN_VERSION}.0" | cut -f 1 -d -)...HEAD)
fi
# add post version if built before (i.e., already tagged)
post_version=$(git tag --contain | wc -l | awk '{print $1}')
test "$post_version" -gt 0 && version_suffix=".post${post_version}"
# development version
else
if [[ -n "$(git tag --list 'v[0-9]*')" ]]; then
recent_tag=$(git describe --tags --match 'v[0-9]*' | cut -f 1 -d -)
majmin_version=$(echo $recent_tag | tr "v.-" " " | awk '{print $1"."$2}')
patch_version=$(echo $recent_tag | tr "v.-" " " | awk '{print $3}')
dev_version=$(git rev-list --count ${recent_tag}...HEAD)
else # start of dev, nothing tagged
majmin_version="0.0"
patch_version="0"
dev_version=$(git rev-list --count HEAD)
fi
version_suffix=".$(date '+%s').dev${dev_version}+${USER}"
fi
version="${majmin_version:-$MAJMIN_VERSION}.${patch_version}${version_suffix}"
json='"version": "'$version'", "commit": "'$(git rev-parse HEAD)'", "build": "'${BUILD_TAG:-"dev"}'"'
# write-out version.json
echo "{${json}}" > $version_json
style="$1"
if [[ "$style" = "json" ]]; then
cat $version_json
else
echo $version
fi