1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Merge pull request #51002 from akien-mga/version-status-env-override

Allow overriding `VERSION_STATUS` with `GODOT_VERSION_STATUS` in env
This commit is contained in:
Rémi Verschelde
2021-07-29 14:45:26 +02:00
committed by GitHub

View File

@@ -61,10 +61,9 @@ def add_module_version_string(self, s):
def update_version(module_version_string=""): def update_version(module_version_string=""):
build_name = "custom_build" build_name = "custom_build"
if os.getenv("BUILD_NAME") != None: if os.getenv("BUILD_NAME") != None:
build_name = os.getenv("BUILD_NAME") build_name = str(os.getenv("BUILD_NAME"))
print("Using custom build name: " + build_name) print("Using custom build name: " + build_name)
import version import version
@@ -79,7 +78,13 @@ def update_version(module_version_string=""):
f.write("#define VERSION_MAJOR " + str(version.major) + "\n") f.write("#define VERSION_MAJOR " + str(version.major) + "\n")
f.write("#define VERSION_MINOR " + str(version.minor) + "\n") f.write("#define VERSION_MINOR " + str(version.minor) + "\n")
f.write("#define VERSION_PATCH " + str(version.patch) + "\n") f.write("#define VERSION_PATCH " + str(version.patch) + "\n")
f.write('#define VERSION_STATUS "' + str(version.status) + '"\n') # For dev snapshots (alpha, beta, RC, etc.) we do not commit status change to Git,
# so this define provides a way to override it without having to modify the source.
godot_status = str(version.status)
if os.getenv("GODOT_VERSION_STATUS") != None:
godot_status = str(os.getenv("GODOT_VERSION_STATUS"))
print("Using version status '%s', overriding the original '%s'.".format(godot_status, str(version.status)))
f.write('#define VERSION_STATUS "' + godot_status + '"\n')
f.write('#define VERSION_BUILD "' + str(build_name) + '"\n') f.write('#define VERSION_BUILD "' + str(build_name) + '"\n')
f.write('#define VERSION_MODULE_CONFIG "' + str(version.module_config) + module_version_string + '"\n') f.write('#define VERSION_MODULE_CONFIG "' + str(version.module_config) + module_version_string + '"\n')
f.write("#define VERSION_YEAR " + str(version.year) + "\n") f.write("#define VERSION_YEAR " + str(version.year) + "\n")