59 lines
1.8 KiB
Bash
Executable file
59 lines
1.8 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
script="$( readlink -f "${0}" )"
|
|
script_dir="$( dirname "${script}" )"
|
|
|
|
if [ "$( git rev-parse --abbrev-ref HEAD )" = "develop" ]; then
|
|
echo "Status: Developing"
|
|
# => version from most recent tag
|
|
git_version="$( \
|
|
git describe --tags --abbrev=0 \
|
|
| sed -E 's/^v[^0-9]*((0|[1-9][0-9]*)[0-9\.]*[0-9]).*$/\1/'
|
|
)"
|
|
elif git rev-parse --abbrev-ref HEAD | grep -E 'release|hotfix/' >/dev/null; then
|
|
echo "Status: Releasing"
|
|
# => version from releasing branch
|
|
git_version="$( \
|
|
git rev-parse --abbrev-ref HEAD \
|
|
| cut -d '/' -f 2
|
|
)"
|
|
else
|
|
echo "ERROR: Invalid git branch"
|
|
echo "ERROR: Chores cannot be run on '$( git rev-parse --abbrev-ref HEAD )'!"
|
|
exit 2
|
|
fi
|
|
|
|
api_version="$( \
|
|
grep '^version' "${script_dir}/../../api/pyproject.toml" \
|
|
| sed -E 's/^version[^0-9]*((0|[1-9][0-9]*)[0-9\.]*[0-9]).*$/\1/'
|
|
)"
|
|
|
|
ui_version="$( \
|
|
grep '"version":' "${script_dir}/../../ui/package.json" \
|
|
| sed -E 's/.*"version":[^0-9]*((0|[1-9][0-9]*)[0-9\.]*[0-9]).*$/\1/'
|
|
)"
|
|
|
|
install_version="$( \
|
|
grep '^ovd_version' "${script_dir}/../install.sh" \
|
|
| sed -E 's/^ovd_version[^0-9]*((0|[1-9][0-9]*)[0-9\.]*[0-9]).*$/\1/'
|
|
)"
|
|
|
|
compose_version="$( \
|
|
grep 'image: code\.yavook\.de/oekzident\.de/ovdashboard' "${script_dir}/../docker-compose.yml" \
|
|
| sed -E 's/.*code\.yavook\.de\/oekzident\.de\/ovdashboard[^0-9]*((0|[1-9][0-9]*)[0-9\.]*[0-9]).*$/\1/'
|
|
)"
|
|
|
|
if [ "${git_version}" = "${api_version}" ] \
|
|
&& [ "${git_version}" = "${ui_version}" ] \
|
|
&& [ "${git_version}" = "${install_version}" ] \
|
|
&& [ "${git_version}" = "${compose_version}" ]; then
|
|
mark="✅️"
|
|
else
|
|
mark="❌️"
|
|
fi
|
|
|
|
echo "git: ${git_version}, api: ${api_version}, ui: ${ui_version}"
|
|
echo "installer: ${install_version}, compose: ${compose_version}"
|
|
echo ">>>>> RESULT: ${mark} <<<<<"
|
|
|
|
[ "${mark}" = "✅️" ] || exit 1
|