Improve automatic version generation - fix #497
This commit is contained in:
parent
c7ea7e081e
commit
5138d04e5d
|
@ -20,9 +20,6 @@ callgrind.*
|
|||
# GDB temp files
|
||||
.gdb_history
|
||||
|
||||
# Git hash file
|
||||
githash.txt
|
||||
|
||||
# Test results
|
||||
tests/tc*/actual*.txt
|
||||
stderr.txt
|
||||
|
|
15
build.bat
15
build.bat
|
@ -1,6 +1,20 @@
|
|||
IF "%DC%"=="" SET DC="dmd"
|
||||
IF "%MFLAGS%"=="" SET MFLAGS="-m32"
|
||||
|
||||
|
||||
:: git might not be installed, so we provide 0.0.0 as a fallback or use
|
||||
:: the existing githash file if existent
|
||||
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 "bin\githash.txt" (
|
||||
echo v0.0.0 > bin\githash.txt
|
||||
)
|
||||
) else (
|
||||
move /y bin\githash_.txt bin\githash.txt
|
||||
)
|
||||
|
||||
set containers_modules=
|
||||
for /r "containers/src" %%F in (*.d) do call set containers_modules=%%containers_modules%% "%%F"
|
||||
|
||||
|
@ -49,6 +63,7 @@ set server_name=bin\dcd-server
|
|||
-Ilibdparse/src^
|
||||
-Istdx-allocator/source^
|
||||
-wi -O -release^
|
||||
-Jbin^
|
||||
%MFLAGS%^
|
||||
-of%server_name%
|
||||
|
||||
|
|
6
dub.json
6
dub.json
|
@ -12,6 +12,9 @@
|
|||
"msgpack-d": "~>1.0.0-beta.3",
|
||||
"stdx-allocator": "~>2.77.2"
|
||||
},
|
||||
"stringImportPaths" : [
|
||||
"bin"
|
||||
],
|
||||
"versions": ["built_with_dub"],
|
||||
"configurations": [
|
||||
{
|
||||
|
@ -40,5 +43,8 @@
|
|||
"src/dcd/client/*"
|
||||
]
|
||||
}
|
||||
],
|
||||
"preGenerateCommands" : [
|
||||
"rdmd --eval=\"auto dir=environment.get(\\\"DUB_PACKAGE_DIR\\\"); dir.buildPath(\\\"bin\\\").mkdirRecurse; auto gitVer = (\\\"git -C \\\"~dir~\\\" describe --tags\\\").executeShell; (gitVer.status == 0 ? gitVer.output.strip : \\\"v\\\" ~ dir.dirName.baseName.findSplitAfter(environment.get(\\\"DUB_ROOT_PACKAGE\\\")~\\\"-\\\")[1]).ifThrown(\\\"0.0.0\\\").chain(newline).toFile(dir.buildPath(\\\"bin\\\", \\\"dubhash.txt\\\"));\""
|
||||
]
|
||||
}
|
||||
|
|
17
makefile
17
makefile
|
@ -17,7 +17,8 @@ STDXALLOC_DIR := stdx-allocator
|
|||
SHELL:=/bin/bash
|
||||
|
||||
githash:
|
||||
git log -1 --format="%H" > githash.txt
|
||||
@mkdir -p bin
|
||||
git describe --tags > bin/githash.txt
|
||||
|
||||
report:
|
||||
dscanner --report src > dscanner-report.json
|
||||
|
@ -36,21 +37,21 @@ CLIENT_SRC := \
|
|||
|
||||
DMD_CLIENT_FLAGS := -Imsgpack-d/src\
|
||||
-Imsgpack-d/src\
|
||||
-J.\
|
||||
-Jbin\
|
||||
-inline\
|
||||
-O\
|
||||
-wi\
|
||||
-ofbin/dcd-client
|
||||
|
||||
GDC_CLIENT_FLAGS := -Imsgpack-d/src\
|
||||
-J.\
|
||||
-Jbin\
|
||||
-O3\
|
||||
-frelease\
|
||||
-obin/dcd-client
|
||||
|
||||
LDC_CLIENT_FLAGS := -Imsgpack-d/src\
|
||||
-Imsgpack-d/src\
|
||||
-J=.\
|
||||
-J=bin\
|
||||
-release\
|
||||
-O5\
|
||||
-oq\
|
||||
|
@ -87,7 +88,7 @@ DMD_SERVER_FLAGS := -Icontainers/src\
|
|||
-I${DPARSE_DIR}/src\
|
||||
-I${DSYMBOL_DIR}/src\
|
||||
-I${STDXALLOC_DIR}/source\
|
||||
-J.\
|
||||
-Jbin\
|
||||
-wi\
|
||||
-O\
|
||||
-release\
|
||||
|
@ -101,13 +102,13 @@ DEBUG_SERVER_FLAGS := -Icontainers/src\
|
|||
-wi\
|
||||
-g\
|
||||
-ofbin/dcd-server\
|
||||
-J.
|
||||
-Jbin
|
||||
|
||||
GDC_SERVER_FLAGS := -Icontainers/src\
|
||||
-Imsgpack-d/src\
|
||||
-I${DPARSE_DIR}/src\
|
||||
-I${DSYMBOL_DIR}/src\
|
||||
-J.\
|
||||
-Jbin\
|
||||
-O3\
|
||||
-frelease\
|
||||
-obin/dcd-server
|
||||
|
@ -117,7 +118,7 @@ LDC_SERVER_FLAGS := -Icontainers/src\
|
|||
-I${DPARSE_DIR}/src\
|
||||
-I${DSYMBOL_DIR}/src\
|
||||
-Isrc\
|
||||
-J=.\
|
||||
-J=bin\
|
||||
-O5\
|
||||
-release
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@ fi
|
|||
archiveName="dcd-$VERSION-$OS-$ARCH_SUFFIX.zip"
|
||||
echo "Building $archiveName"
|
||||
mkdir -p bin
|
||||
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
|
||||
|
|
|
@ -92,12 +92,7 @@ int main(string[] args)
|
|||
|
||||
if (printVersion)
|
||||
{
|
||||
version (Windows)
|
||||
writeln(DCD_VERSION);
|
||||
else version(built_with_dub)
|
||||
writeln(DCD_VERSION);
|
||||
else
|
||||
write(DCD_VERSION, " ", GIT_HASH);
|
||||
writeln(DCD_VERSION);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -18,17 +18,20 @@
|
|||
|
||||
module dcd.common.dcd_version;
|
||||
|
||||
import std.string : strip;
|
||||
|
||||
/**
|
||||
* Human-readable version number
|
||||
*/
|
||||
enum DCD_VERSION = "v0.9.8";
|
||||
|
||||
version (Windows) {}
|
||||
else version (built_with_dub) {}
|
||||
version (built_with_dub)
|
||||
{
|
||||
enum DCD_VERSION = import("dubhash.txt").strip;
|
||||
}
|
||||
else
|
||||
{
|
||||
/**
|
||||
* Current build's Git commit hash
|
||||
*/
|
||||
enum GIT_HASH = import("githash.txt");
|
||||
enum DCD_VERSION = import("githash.txt").strip;
|
||||
}
|
||||
|
|
|
@ -81,12 +81,7 @@ int main(string[] args)
|
|||
|
||||
if (printVersion)
|
||||
{
|
||||
version (Windows)
|
||||
writeln(DCD_VERSION);
|
||||
else version (built_with_dub)
|
||||
writeln(DCD_VERSION);
|
||||
else
|
||||
write(DCD_VERSION, " ", GIT_HASH);
|
||||
writeln(DCD_VERSION);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue