|
@@ -1154,11 +1154,11 @@ def add_module_version_string(self,s):
|
|
|
|
|
|
def update_version(module_version_string=""):
|
|
|
|
|
|
- rev = "custom_build"
|
|
|
+ build_name = "custom_build"
|
|
|
+ if (os.getenv("BUILD_NAME") != None):
|
|
|
+ build_name = os.getenv("BUILD_NAME")
|
|
|
+ print("Using custom build name: " + build_name)
|
|
|
|
|
|
- if (os.getenv("BUILD_REVISION") != None):
|
|
|
- rev = os.getenv("BUILD_REVISION")
|
|
|
- print("Using custom revision: " + rev)
|
|
|
import version
|
|
|
|
|
|
f = open("core/version_generated.gen.h", "w")
|
|
@@ -1168,8 +1168,8 @@ def update_version(module_version_string=""):
|
|
|
f.write("#define VERSION_MINOR " + str(version.minor) + "\n")
|
|
|
if (hasattr(version, 'patch')):
|
|
|
f.write("#define VERSION_PATCH " + str(version.patch) + "\n")
|
|
|
- f.write("#define VERSION_REVISION \"" + str(rev) + "\"\n")
|
|
|
f.write("#define VERSION_STATUS \"" + str(version.status) + "\"\n")
|
|
|
+ f.write("#define VERSION_BUILD \"" + str(build_name) + "\"\n")
|
|
|
f.write("#define VERSION_MODULE_CONFIG \"" + str(version.module_config) + module_version_string + "\"\n")
|
|
|
import datetime
|
|
|
f.write("#define VERSION_YEAR " + str(datetime.datetime.now().year) + "\n")
|