-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathversion.sh
executable file
·51 lines (41 loc) · 1.24 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
#!/bin/bash
VERSION_H=include/version.h
TEMPLATE_FILE=include/version.h.template
PUBSPEC_YAML_FILE=src/ui/flutter_app/pubspec.yaml
GIT_BRANCH=master
rm -f $VERSION_H
git rev-list HEAD | sort > config.git-hash
LOCALVER="$(wc -l config.git-hash | awk '{print $1}')"
TAG="$(git describe --tags "$(git rev-list --tags --max-count=1)")"
if [ "$LOCALVER" -gt "1" ] ; then
VER=$(git rev-list origin/$GIT_BRANCH | sort | join config.git-hash - | wc -l | awk '{print $1}')
if [ "$VER" != "$LOCALVER" ] ; then
VER="$VER+$((LOCALVER-VER))"
fi
if git status | grep -q "modified:" ; then
VER="${VER}M"
fi
VER="$VER g$(git rev-list HEAD -n 1 | cut -c 1-7)"
GIT_VERSION="$TAG r$VER"
APP_VERSION="${TAG:1}+${LOCALVER-VER}"
else
DATE=$(date +%Y%m%d)
if [ -n "$GITHUB_RUN_NUMBER" ] ; then
VER="$GITHUB_RUN_NUMBER"
GIT_VERSION="$TAG #$VER"
else
VER="${DATE:2}"
GIT_VERSION="$TAG Build $VER"
fi
APP_VERSION="${TAG:1}+${VER}"
fi
rm -f config.git-hash
sed "s/\$FULL_VERSION/$GIT_VERSION/g" < $TEMPLATE_FILE > $VERSION_H
git update-index --assume-unchanged $VERSION_H
echo "App Version: ${APP_VERSION}"
echo
echo "Generated $VERSION_H"
echo
cat $VERSION_H
sed -i '/version:/d' ${PUBSPEC_YAML_FILE}
sed -i "4i\version: ${APP_VERSION}" ${PUBSPEC_YAML_FILE}