From 53b03ff4309dc4390112989f304fe3451b520e63 Mon Sep 17 00:00:00 2001 From: Li Date: Fri, 17 Jun 2022 23:09:26 +1200 Subject: [PATCH] Update prebuild.py --- HorseIsleServer/prebuild.py | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/HorseIsleServer/prebuild.py b/HorseIsleServer/prebuild.py index a8f6155..6e05ae8 100644 --- a/HorseIsleServer/prebuild.py +++ b/HorseIsleServer/prebuild.py @@ -5,6 +5,7 @@ import time import datetime import binascii +# Updates version inside a AssemblyInfo.cs file def update_asm_info(assemblyinfofile): global commit_hash global commit_tag @@ -19,46 +20,52 @@ def update_asm_info(assemblyinfofile): open(assemblyinfofile, "wb").writelines(lines) -# Determine git stuff. +# Create "versioning" folder try: versioning_folder = os.path.join("LibHISP", "Resources", "Versioning") if not os.path.exists(versioning_folder): os.mkdir(versioning_folder) except FileExistsError: pass - -commit_hash = "0"*40 -commit_tag = "v0.0.0" -commit_branch = "master" +# Defaults (for if git isn't installed) + +commit_hash = "0"*40 +commit_tag = "v0.0.0" +commit_branch = "master" + +# Run git to determine version info try: - commit_hash = subprocess.run(['git', 'rev-parse', '--verify', 'HEAD'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") - commit_tag = subprocess.run(['git', 'describe', '--abbrev=0', '--tags'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") - commit_tag += "." + subprocess.run(['git', 'rev-list', commit_tag+'..HEAD', '--count'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") - commit_branch = subprocess.run(['git', 'branch', '--show-current'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") + commit_hash = subprocess.run(['git', 'rev-parse', '--verify', 'HEAD'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") + commit_tag = subprocess.run(['git', 'describe', '--abbrev=0', '--tags'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") + commit_tag += "." + subprocess.run(['git', 'rev-list', commit_tag+'..HEAD', '--count'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") + commit_branch = subprocess.run(['git', 'branch', '--show-current'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8") except FileNotFoundError: pass +# Get current time and date of this build commit_date = datetime.datetime.now().strftime("%d/%m/%Y") commit_time = datetime.datetime.now().strftime("%H:%M:%S") +# Write resources open(os.path.join(versioning_folder, "GitCommit"), "w").write(commit_hash) open(os.path.join(versioning_folder, "GitTag" ), "w").write(commit_tag) open(os.path.join(versioning_folder, "GitBranch"), "w").write(commit_branch) open(os.path.join(versioning_folder, "BuildDate"), "w").write(commit_date) open(os.path.join(versioning_folder, "BuildTime"), "w").write(commit_time) -# Derive assembly version +# Get assembly version points = commit_tag.replace("v", "").split(".") while len(points) < 4: points.append("0") assembly_version = ".".join(points) +# Update AssemblyInfo.cs files update_asm_info(os.path.join("LibHISP", "Properties", "AssemblyInfo.cs")) -update_asm_info(os.path.join("N00BS", "Properties", "AssemblyInfo.cs")) -update_asm_info(os.path.join("HISPd", "Properties", "AssemblyInfo.cs")) +update_asm_info(os.path.join("N00BS" , "Properties", "AssemblyInfo.cs")) +update_asm_info(os.path.join("HISPd" , "Properties", "AssemblyInfo.cs")) -# Update control file +# Update control file in dpkg control_file = os.path.join("HISPd", "Resources", "DEBIAN", "control") lines = open(control_file, "rb").readlines() for i in range(0,len(lines)):