1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/calcitem-Sanmill

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
version.sh 1.8 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Calcitem Отправлено 13.05.2023 12:15 1acb058
#!/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
# Define sed command, use gsed on macOS
SED=sed
if [ "$(uname)" == "Darwin" ]; then
SED=gsed
fi
# Remove existing VERSION_H file
rm -f $VERSION_H
# Create a file with the sorted git commit hashes
git rev-list HEAD | sort > config.git-hash
# Calculate the number of commits in the repository
LOCALVER="$(wc -l config.git-hash | awk '{print $1}')"
# Get the latest git tag
TAG="$(git describe --tags "$(git rev-list --tags --max-count=1)")"
# Determine the version string based on the number of commits
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
# Remove the temporary git-hash file
rm -f config.git-hash
# Replace the version placeholder in the template file and create VERSION_H
$SED "s/\$FULL_VERSION/$GIT_VERSION/g" < $TEMPLATE_FILE > $VERSION_H
# Tell git to ignore changes in VERSION_H
git update-index --assume-unchanged $VERSION_H
# Print the generated version string
echo "App Version: ${APP_VERSION}"
echo
echo "Generated $VERSION_H"
echo
cat $VERSION_H
# Remove the version line from the pubspec.yaml file and insert the new version
$SED -i '/version:/d' ${PUBSPEC_YAML_FILE}
$SED -i "4i\version: ${APP_VERSION}" ${PUBSPEC_YAML_FILE}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/calcitem-Sanmill.git
git@api.gitlife.ru:oschina-mirror/calcitem-Sanmill.git
oschina-mirror
calcitem-Sanmill
calcitem-Sanmill
master