Sanmill/version.sh

58 lines
1.3 KiB
Bash
Raw Normal View History

2019-08-18 08:10:54 +08:00
#!/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
2021-07-11 23:59:39 +08:00
SED=sed
if [ "$(uname)" == "Darwin" ]; then
SED=gsed
fi
rm -f $VERSION_H
2019-08-18 08:10:54 +08:00
git rev-list HEAD | sort > config.git-hash
2020-03-21 00:05:54 +08:00
LOCALVER="$(wc -l config.git-hash | awk '{print $1}')"
TAG="$(git describe --tags "$(git rev-list --tags --max-count=1)")"
2019-08-18 08:10:54 +08:00
2020-03-21 00:05:54 +08:00
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}"
2019-08-18 08:10:54 +08:00
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}"
2019-08-18 08:10:54 +08:00
fi
rm -f config.git-hash
2021-07-11 23:59:39 +08:00
$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
2021-07-11 23:59:39 +08:00
$SED -i '/version:/d' ${PUBSPEC_YAML_FILE}
$SED -i "4i\version: ${APP_VERSION}" ${PUBSPEC_YAML_FILE}