mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Move to csx
This commit is contained in:
parent
27c79a28a3
commit
a003f5b98d
6 changed files with 180 additions and 94 deletions
|
@ -1,7 +1,7 @@
|
|||
Package: hisp
|
||||
Version: 1.7.128
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
Architecture: amd64
|
||||
Description: Open Source Implementation of the server for flash game "Horse Isle".
|
||||
Package: hisp
|
||||
Version: 1.7.132
|
||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||
Maintainer: Li
|
||||
Homepage: https://islehorse.com
|
||||
Architecture: amd64
|
||||
Description: Open Source Implementation of the server for flash game "Horse Isle".
|
||||
|
|
|
@ -272,6 +272,6 @@
|
|||
|
||||
|
||||
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
||||
<Exec Command="python3 $(ProjectDir)prebuild.py" />
|
||||
<Exec Command="csi $(ProjectDir)prebuild.csx" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
|
@ -30,5 +30,14 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.7.128.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.128.0")]
|
||||
[assembly: AssemblyVersion("1.7.132.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.132.0")]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
139
HorseIsleServer/LibHISP/prebuild.csx
Normal file
139
HorseIsleServer/LibHISP/prebuild.csx
Normal file
|
@ -0,0 +1,139 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
||||
// Set Working Directory
|
||||
private static string SOLUTION_DIR = Path.GetDirectoryName(Path.GetDirectoryName(GetSourceFile()));
|
||||
Directory.SetCurrentDirectory(SOLUTION_DIR);
|
||||
|
||||
private static string VERSIONING_FOLDER = Path.Combine("LibHISP", "Resources", "Versioning");
|
||||
|
||||
// Defaults (for if git isn't installed)
|
||||
private static string COMMIT_HASH = "0000000000000000000000000000000000000000";
|
||||
private static string COMMIT_TAG = "v0.0.0";
|
||||
private static string COMMIT_BRANCH = "master";
|
||||
|
||||
|
||||
// Get Build Date
|
||||
private static string COMMIT_DATE = DateTime.UtcNow.ToString("dd/MM/yyyyy");
|
||||
private static string COMMIT_TIME = DateTime.UtcNow.ToString("H:M:s");
|
||||
|
||||
// IDK how this works, found it on stackoverflow, but it returns the path to the prebuild.csx
|
||||
private static string GetSourceFile([CallerFilePath] string file = "")
|
||||
{
|
||||
return file;
|
||||
}
|
||||
|
||||
// Updates version inside a AssemblyInfo.cs file
|
||||
private static void UpdateAsmInfo(string assemblyInfoFile)
|
||||
{
|
||||
string assembly_version = DetermineAssemblyVersion();
|
||||
|
||||
Console.WriteLine("Updating Verson inside: " + assemblyInfoFile);
|
||||
string[] lines = File.ReadAllLines(assemblyInfoFile);
|
||||
for(int i = 0; i < lines.Length; i++)
|
||||
{
|
||||
if (lines[i].StartsWith("[assembly: AssemblyVersion(\""))
|
||||
{
|
||||
lines[i] = "[assembly: AssemblyVersion(\"" + assembly_version + "\")]";
|
||||
}
|
||||
|
||||
else if (lines[i].StartsWith("[assembly: AssemblyFileVersion(\""))
|
||||
{
|
||||
lines[i] = "[assembly: AssemblyFileVersion(\"" + assembly_version + "\")]";
|
||||
}
|
||||
}
|
||||
|
||||
File.WriteAllLines(assemblyInfoFile, lines);
|
||||
}
|
||||
|
||||
|
||||
// Create "versioning" folder
|
||||
public static void CreateVersioningFolder()
|
||||
{
|
||||
if (!Directory.Exists(VERSIONING_FOLDER))
|
||||
{
|
||||
Directory.CreateDirectory(VERSIONING_FOLDER);
|
||||
}
|
||||
}
|
||||
|
||||
// Function for running a process
|
||||
public static string StartProcess(string[] cmd)
|
||||
{
|
||||
using (Process proc = new Process())
|
||||
{
|
||||
proc.StartInfo.FileName = cmd[0];
|
||||
proc.StartInfo.RedirectStandardOutput = true;
|
||||
proc.StartInfo.RedirectStandardError = true;
|
||||
proc.StartInfo.UseShellExecute = false;
|
||||
proc.StartInfo.CreateNoWindow = true;
|
||||
proc.StartInfo.Arguments = String.Join(" ", cmd.Skip(1).ToArray());
|
||||
proc.Start();
|
||||
string output = proc.StandardOutput.ReadToEnd().Replace("\r", "").Replace("\n", "");
|
||||
return output;
|
||||
}
|
||||
}
|
||||
|
||||
// Run git to determine version
|
||||
private static void RunGit()
|
||||
{
|
||||
try
|
||||
{
|
||||
COMMIT_HASH = StartProcess(new string[] { "git", "rev-parse", "--verify", "HEAD" });
|
||||
COMMIT_TAG = StartProcess(new string[] { "git", "describe", "--abbrev=0", "--tags" });
|
||||
COMMIT_TAG += "." + StartProcess(new string[] { "git", "rev-list", COMMIT_TAG + "..HEAD", "--count" });
|
||||
COMMIT_BRANCH = StartProcess(new string[] { "git", "branch", "--show-current" });
|
||||
} catch (Exception e) { Console.Error.WriteLine(e.Message); }
|
||||
}
|
||||
|
||||
// Write Resources to Versioning Folder
|
||||
private static void WriteResources()
|
||||
{
|
||||
File.WriteAllText(Path.Combine(VERSIONING_FOLDER, "GitCommit"), COMMIT_HASH);
|
||||
File.WriteAllText(Path.Combine(VERSIONING_FOLDER, "GitTag" ), COMMIT_TAG);
|
||||
File.WriteAllText(Path.Combine(VERSIONING_FOLDER, "GitBranch"), COMMIT_BRANCH);
|
||||
File.WriteAllText(Path.Combine(VERSIONING_FOLDER, "BuildDate"), COMMIT_DATE);
|
||||
File.WriteAllText(Path.Combine(VERSIONING_FOLDER, "BuildTime"), COMMIT_TIME);
|
||||
|
||||
}
|
||||
|
||||
// Find assembly version based on commit tag
|
||||
private static string DetermineAssemblyVersion()
|
||||
{
|
||||
List<String> points = COMMIT_TAG.Replace("v", "").Split('.').ToList();
|
||||
while(points.Count < 4)
|
||||
{
|
||||
points.Add("0");
|
||||
}
|
||||
return String.Join(".", points.ToArray());
|
||||
}
|
||||
|
||||
private static void UpdateVersionInControlFile(string controlFile)
|
||||
{
|
||||
Console.WriteLine("Updating Verson inside: " + controlFile);
|
||||
string[] lines = File.ReadAllLines(controlFile);
|
||||
for (int i = 0; i < lines.Length; i++)
|
||||
{
|
||||
if (lines[i].StartsWith("Version: "))
|
||||
{
|
||||
lines[i] = "Version: " + COMMIT_TAG.Replace("v", "");
|
||||
}
|
||||
}
|
||||
File.WriteAllLines(controlFile, lines);
|
||||
}
|
||||
|
||||
CreateVersioningFolder();
|
||||
RunGit();
|
||||
WriteResources();
|
||||
|
||||
// Update AssemblyInfo.cs files
|
||||
UpdateAsmInfo(Path.Combine("LibHISP", "Properties", "AssemblyInfo.cs"));
|
||||
UpdateAsmInfo(Path.Combine("MPN00BS", "Properties", "AssemblyInfo.cs"));
|
||||
UpdateAsmInfo(Path.Combine("HISPd", "Properties", "AssemblyInfo.cs"));
|
||||
|
||||
// Update control file in dpkg.
|
||||
UpdateVersionInControlFile(Path.Combine("HISPd", "Resources", "DEBIAN", "control"));
|
|
@ -1,80 +0,0 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import time
|
||||
import datetime
|
||||
import binascii
|
||||
|
||||
os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
|
||||
|
||||
# Updates version inside a AssemblyInfo.cs file
|
||||
def update_asm_info(assemblyinfofile):
|
||||
global commit_hash
|
||||
global commit_tag
|
||||
global commit_branch
|
||||
global assembly_version
|
||||
print("Updating Verson inside: "+assemblyinfofile)
|
||||
lines = open(assemblyinfofile, "rb").readlines()
|
||||
for i in range(0,len(lines)):
|
||||
if lines[i].startswith(b"[assembly: AssemblyVersion(\""):
|
||||
lines[i] = b"[assembly: AssemblyVersion(\""+bytes(assembly_version, "UTF-8")+b"\")]\r\n"
|
||||
if lines[i].startswith(b"[assembly: AssemblyFileVersion(\""):
|
||||
lines[i] = b"[assembly: AssemblyFileVersion(\""+bytes(assembly_version, "UTF-8")+b"\")]\r\n"
|
||||
open(assemblyinfofile, "wb").writelines(lines)
|
||||
|
||||
|
||||
# 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
|
||||
|
||||
# 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")
|
||||
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)
|
||||
|
||||
# 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("MPN00BS", "Properties", "AssemblyInfo.cs"))
|
||||
update_asm_info(os.path.join("HISPd" , "Properties", "AssemblyInfo.cs"))
|
||||
|
||||
# Update control file in dpkg
|
||||
control_file = os.path.join("HISPd", "Resources", "DEBIAN", "control")
|
||||
print("Updating Verson inside: "+control_file)
|
||||
lines = open(control_file, "rb").readlines()
|
||||
for i in range(0,len(lines)):
|
||||
if lines[i].startswith(b"Version: "):
|
||||
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")+b"\n"
|
||||
open(control_file, "wb").writelines(lines)
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
|
@ -30,5 +30,23 @@ using System.Runtime.InteropServices;
|
|||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.7.128.0")]
|
||||
[assembly: AssemblyFileVersion("1.7.128.0")]
|
||||
[assembly: AssemblyVersion("1.7.132.0")]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[assembly: AssemblyFileVersion("1.7.132.0")]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue