Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <git@davidebeatrici.dev>2021-02-16 11:57:12 +0300
committerDavide Beatrici <git@davidebeatrici.dev>2021-02-16 11:57:18 +0300
commit1e4932b898363990ae41435a5741b4f31ddc6b4c (patch)
tree79583f6732e3f6e7a4f2c3c37bb5142b77194659 /.ci/azure-pipelines/build_linux.bash
parent9f3685efb7e74b9a0106b087f9c5e74240b46742 (diff)
BUILD(versioning): Implement "--format" option in mumble-version.py
The option replaces "--project" and allows to specify the desired string format: - "full": The default. Prints version + suffix (e.g. "1.4.0~2021-02-14~g973cee211~snapshot"). - "version": Only prints the version (e.g. "1.4.0"). - "suffix": Only prints the suffix (e.g. "~2021-02-14~g973cee211~snapshot"). The main reason for implementing this new option is the suffix-only output. It will be passed to CMake in a future commit, for better filename control.
Diffstat (limited to '.ci/azure-pipelines/build_linux.bash')
-rwxr-xr-x.ci/azure-pipelines/build_linux.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/azure-pipelines/build_linux.bash b/.ci/azure-pipelines/build_linux.bash
index 72f3dcf24..b2a2a9cc4 100755
--- a/.ci/azure-pipelines/build_linux.bash
+++ b/.ci/azure-pipelines/build_linux.bash
@@ -20,7 +20,7 @@
#
if [[ -n "$MUMBLE_BUILD_NUMBER_TOKEN" ]]; then
- VERSION=$(python "scripts/mumble-version.py" --project)
+ VERSION=$(python "scripts/mumble-version.py" --format version)
BUILD_NUMBER=$(curl "https://mumble.info/get-build-number?commit=${BUILD_SOURCEVERSION}&version=${VERSION}&token=${MUMBLE_BUILD_NUMBER_TOKEN}")
else
BUILD_NUMBER=0