Fix #648 - Use the current git version when building the Windows binaries
This commit is contained in:
parent
4b394c2a7d
commit
3430b0cab9
|
@ -31,6 +31,7 @@ dsc
|
|||
|
||||
# Git hash
|
||||
githash.txt
|
||||
githash_.txt
|
||||
|
||||
# GDB history
|
||||
.gdb_history
|
||||
|
|
14
build.bat
14
build.bat
|
@ -4,7 +4,19 @@ setlocal enabledelayedexpansion
|
|||
if "%DC%"=="" set DC="dmd"
|
||||
if "%DC%"=="ldc2" set DC="ldmd2"
|
||||
|
||||
set DFLAGS=-O -release -inline -version=StdLoggerDisableWarning
|
||||
:: 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 %githashsize% == 0 (
|
||||
if not exist "githash.txt" (
|
||||
echo v0.0.0 > githash.txt
|
||||
)
|
||||
) else (
|
||||
move /y githash_.txt githash.txt
|
||||
)
|
||||
|
||||
set DFLAGS=-O -release -inline -version=StdLoggerDisableWarning -J.
|
||||
set TESTFLAGS=-g -w -version=StdLoggerDisableWarning
|
||||
set CORE=
|
||||
set LIBDPARSE=
|
||||
|
|
|
@ -19,6 +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
|
||||
DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat
|
||||
|
||||
cd bin
|
||||
|
|
|
@ -8,16 +8,11 @@ module dscanner.dscanner_version;
|
|||
/**
|
||||
* Human-readable version number
|
||||
*/
|
||||
enum DEFAUULT_DSCANNER_VERSION = "v0.5.5";
|
||||
|
||||
version (built_with_dub)
|
||||
{
|
||||
enum DSCANNER_VERSION = import("dubhash.txt");
|
||||
}
|
||||
else version (Windows)
|
||||
{
|
||||
enum DSCANNER_VERSION = DEFAUULT_DSCANNER_VERSION;
|
||||
}
|
||||
else
|
||||
{
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue