From d0a732113ce4a14ccc9a2f388c3fdd1804c26c77 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 25 Jun 2018 17:43:22 +0200 Subject: [PATCH] Improve auto-versioning --- .gitignore | 4 ---- build.bat | 13 +++++++------ release-windows.sh | 2 +- src/dscanner/dscanner_version.d | 6 ++++-- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 7ea0dc2..1232473 100755 --- a/.gitignore +++ b/.gitignore @@ -29,10 +29,6 @@ obj # debug build dsc -# Git hash -githash.txt -githash_.txt - # GDB history .gdb_history diff --git a/build.bat b/build.bat index c51e135..aac8a8b 100644 --- a/build.bat +++ b/build.bat @@ -6,17 +6,18 @@ if "%DC%"=="ldc2" set DC="ldmd2" :: git might not be installed, so we provide 0.0.0 as a fallback or use :: the existing githash file if existent -git describe --tags > githash_.txt -for /f %%i in ("githash_.txt") do set githashsize=%%~zi +if not exist "bin" mkdir bin +git describe --tags > bin\githash_.txt +for /f %%i in ("bin\githash_.txt") do set githashsize=%%~zi if %githashsize% == 0 ( - if not exist "githash.txt" ( - echo v0.0.0 > githash.txt + if not exist "bin\githash.txt" ( + echo v0.0.0 > bin\githash.txt ) ) else ( - move /y githash_.txt githash.txt + move /y bin\githash_.txt bin\githash.txt ) -set DFLAGS=-O -release -inline -version=StdLoggerDisableWarning -J. +set DFLAGS=-O -release -inline -version=StdLoggerDisableWarning -Jbin set TESTFLAGS=-g -w -version=StdLoggerDisableWarning set CORE= set LIBDPARSE= diff --git a/release-windows.sh b/release-windows.sh index a6e4c47..cbb7b91 100755 --- a/release-windows.sh +++ b/release-windows.sh @@ -19,7 +19,7 @@ fi archiveName="dscanner-$VERSION-$OS-$ARCH_SUFFIX.zip" echo "Building $archiveName" mkdir -p bin -git describe --tags > githash.txt # no git installed under Wine +git describe --tags > bin/githash.txt # no git installed under Wine DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat cd bin diff --git a/src/dscanner/dscanner_version.d b/src/dscanner/dscanner_version.d index 0509eef..beebd16 100644 --- a/src/dscanner/dscanner_version.d +++ b/src/dscanner/dscanner_version.d @@ -5,18 +5,20 @@ module dscanner.dscanner_version; +import std.string : strip; + /** * Human-readable version number */ version (built_with_dub) { - enum DSCANNER_VERSION = import("dubhash.txt"); + enum DSCANNER_VERSION = import("dubhash.txt").strip; } else { /** * Current build's Git commit hash */ - enum DSCANNER_VERSION = import("githash.txt"); + enum DSCANNER_VERSION = import("githash.txt").strip; }