123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- #addin nuget:?package=Cake.FileHelpers&version=3.3.0
- #addin nuget:?package=SharpZipLib&version=1.3.0
- #addin nuget:?package=Cake.Compression&version=0.2.4
- #addin nuget:?package=Cake.Json&version=5.2.0
- #addin nuget:?package=Newtonsoft.Json&version=12.0.3
- var target = Argument("target", "Build");
- var isBleedingEdge = Argument("bleeding_edge", false);
- var buildId = Argument("build_id", 0);
- var lastBuildCommit = Argument("last_build_commit", "");
- var buildVersion = "";
- var currentCommit = RunGit("rev-parse HEAD");
- var currentCommitShort = RunGit("log -n 1 --pretty=\"format:%h\"").Trim();
- var currentBranch = RunGit("rev-parse --abbrev-ref HEAD");
- var latestTag = RunGit("describe --tags --abbrev=0");
- string RunGit(string command, string separator = "")
- {
- using(var process = StartAndReturnProcess("git", new ProcessSettings { Arguments = command, RedirectStandardOutput = true }))
- {
- process.WaitForExit();
- return string.Join(separator, process.GetStandardOutput());
- }
- }
- Task("Cleanup")
- .Does(() =>
- {
- Information("Removing old binaries");
- CreateDirectory("./bin");
- CleanDirectory("./bin");
- Information("Cleaning up old build objects");
- CleanDirectories(GetDirectories("./**/bin/"));
- CleanDirectories(GetDirectories("./**/obj/"));
- });
- Task("PullDependencies")
- .Does(() =>
- {
- Information("Updating git submodules");
- StartProcess("git", "submodule update --init --recursive");
- Information("Restoring NuGet packages");
- NuGetRestore("./BepInEx.sln");
- });
- Task("Build")
- .IsDependentOn("Cleanup")
- .IsDependentOn("PullDependencies")
- .Does(() =>
- {
- var bepinExProperties = Directory("./BepInEx.Shared");
- buildVersion = FindRegexMatchGroupInFile(bepinExProperties + File("BepInEx.Shared.projitems"), @"\<Version\>([0-9]+\.[0-9]+\.[0-9]+)\<\/Version\>", 1, System.Text.RegularExpressions.RegexOptions.None).Value;
- var buildSettings = new MSBuildSettings {
- Configuration = "Release",
- Restore = true
- };
- if (isBleedingEdge)
- {
- buildSettings.Properties["BuildInfo"] = new[] {
- TransformText("BLEEDING EDGE Build #<%buildNumber%> from <%shortCommit%> at <%branchName%>")
- .WithToken("buildNumber", buildId)
- .WithToken("shortCommit", currentCommit)
- .WithToken("branchName", currentBranch)
- .ToString()
- };
- buildSettings.Properties["AssemblyVersion"] = new[] { buildVersion + "." + buildId };
- buildVersion += "-be." + buildId;
- buildSettings.Properties["Version"] = new[] { buildVersion };
- }
- //buildSettings.Properties["TargetFrameworks"] = new []{ "net35" };
- MSBuild("./BepInEx.Unity/BepInEx.Unity.csproj", buildSettings);
-
- //buildSettings.Properties["TargetFrameworks"] = new []{ "net452" };
- MSBuild("./BepInEx.NetLauncher/BepInEx.NetLauncher.csproj", buildSettings);
-
- //buildSettings.Properties["TargetFrameworks"] = new []{ "net472" };
- MSBuild("./BepInEx.IL2CPP/BepInEx.IL2CPP.csproj", buildSettings);
- });
- const string DOORSTOP_VER_WIN = "3.1.0.0";
- const string DOORSTOP_VER_UNIX = "1.3.0.0";
- const string MONO_VER = "2020.11.08";
- const string DOORSTOP_DLL = "winhttp.dll";
- Task("DownloadDependencies")
- .Does(() =>
- {
- Information("Downloading Doorstop");
- var doorstopPath = Directory("./bin/doorstop");
- var doorstopX64Path = doorstopPath + File("doorstop_x64.zip");
- var doorstopX86Path = doorstopPath + File("doorstop_x86.zip");
- var doorstopLinuxPath = doorstopPath + File("doorstop_linux.zip");
- var doorstopMacPath = doorstopPath + File("doorstop_macos.zip");
- CreateDirectory(doorstopPath);
- DownloadFile($"https://github.com/NeighTools/UnityDoorstop/releases/download/v{DOORSTOP_VER_WIN}/Doorstop_x64_{DOORSTOP_VER_WIN}.zip", doorstopX64Path);
- DownloadFile($"https://github.com/NeighTools/UnityDoorstop/releases/download/v{DOORSTOP_VER_WIN}/Doorstop_x86_{DOORSTOP_VER_WIN}.zip", doorstopX86Path);
-
- DownloadFile($"https://github.com/NeighTools/UnityDoorstop.Unix/releases/download/v{DOORSTOP_VER_UNIX}/doorstop_v{DOORSTOP_VER_UNIX}_linux.zip", doorstopLinuxPath);
- DownloadFile($"https://github.com/NeighTools/UnityDoorstop.Unix/releases/download/v{DOORSTOP_VER_UNIX}/doorstop_v{DOORSTOP_VER_UNIX}_macos.zip", doorstopMacPath);
- Information("Extracting Doorstop");
- ZipUncompress(doorstopX86Path, doorstopPath + Directory("x86"));
- ZipUncompress(doorstopX64Path, doorstopPath + Directory("x64"));
- ZipUncompress(doorstopLinuxPath, doorstopPath + Directory("unix"));
- ZipUncompress(doorstopMacPath, doorstopPath + Directory("unix"));
-
- Information("Downloading Mono");
- var monoPath = Directory("./bin/doorstop/mono");
- var monoX64Path = doorstopPath + File("mono_x64.zip");
- var monoX86Path = doorstopPath + File("mono_x86.zip");
- CreateDirectory(monoPath);
- DownloadFile($"https://github.com/BepInEx/mono/releases/download/{MONO_VER}/mono-x64.zip", monoX64Path);
- DownloadFile($"https://github.com/BepInEx/mono/releases/download/{MONO_VER}/mono-x86.zip", monoX86Path);
- Information("Extracting Mono");
- ZipUncompress(monoX64Path, monoPath + Directory("x64"));
- ZipUncompress(monoX86Path, monoPath + Directory("x86"));
- });
- Task("MakeDist")
- .IsDependentOn("Build")
- .IsDependentOn("DownloadDependencies")
- .Does(() =>
- {
- var distDir = Directory("./bin/dist");
- //var distPatcherDir = distDir + Directory("patcher");
- var doorstopPath = Directory("./bin/doorstop");
- CreateDirectory(distDir);
- //CreateDirectory(distPatcherDir);
- var changelog = TransformText("<%commit_count%> commits since <%last_tag%>\r\n\r\nChangelog (excluding merges):\r\n<%commit_log%>")
- .WithToken("commit_count", RunGit($"rev-list --count {latestTag}..HEAD"))
- .WithToken("last_tag", latestTag)
- .WithToken("commit_log", RunGit($"--no-pager log --no-merges --pretty=\"format:* (%h) [%an] %s\" {latestTag}..HEAD", "\r\n"))
- .ToString();
- void PackageBepin(string platform, string arch, string originDir, string doorstopConfigFile = null, bool copyMono = false)
- {
- string platformName = platform + (arch == null ? "" : "_" + arch);
- bool isUnix = arch == "unix";
- Information("Creating distributions for platform \"" + platformName + "\"...");
-
- string doorstopArchPath = null;
-
- if (arch != null)
- {
- doorstopArchPath = doorstopPath + Directory(arch)
- + File(isUnix ? "*.*" : DOORSTOP_DLL);
- }
-
- var distArchDir = distDir + Directory(platformName);
- var bepinDir = distArchDir + Directory("BepInEx");
- var doorstopDir = distArchDir;
- if (isUnix) doorstopDir += Directory("doorstop_libs");
-
- CreateDirectory(distArchDir);
- CreateDirectory(doorstopDir);
- CreateDirectory(bepinDir + Directory("core"));
- CreateDirectory(bepinDir + Directory("plugins"));
- CreateDirectory(bepinDir + Directory("patchers"));
- if (doorstopArchPath != null)
- {
- CopyFile("./doorstop/" + doorstopConfigFile, Directory(distArchDir) + File(isUnix ? "run_bepinex.sh" : "doorstop_config.ini"));
- CopyFiles(doorstopArchPath, doorstopDir);
- if (isUnix)
- {
- ReplaceTextInFiles($"{distArchDir}/run_bepinex.sh", "\r\n", "\n");
- }
- if (copyMono)
- {
- CopyDirectory("./bin/doorstop/mono/" + arch + "/mono", Directory(distArchDir) + Directory("mono"));
- }
- }
- CopyFiles("./bin/" + Directory(originDir) + "/*.*", Directory(bepinDir) + Directory("core"));
- FileWriteText(distArchDir + File("changelog.txt"), changelog);
- if (platform == "NetLauncher")
- {
- DeleteFile(Directory(bepinDir) + Directory("core") + File("BepInEx.NetLauncher.exe.config"));
- MoveFiles(Directory(bepinDir) + Directory("core") + File("BepInEx.NetLauncher.*"), Directory(distArchDir));
- }
- }
- PackageBepin("UnityMono", "x86", "Unity", "doorstop_config_mono.ini");
- PackageBepin("UnityMono", "x64", "Unity", "doorstop_config_mono.ini");
- PackageBepin("UnityMono", "unix", "Unity", "run_bepinex.sh");
- PackageBepin("UnityIL2CPP", "x86", "IL2CPP", "doorstop_config_il2cpp.ini", copyMono: true);
- PackageBepin("UnityIL2CPP", "x64", "IL2CPP", "doorstop_config_il2cpp.ini", copyMono: true);
- PackageBepin("NetLauncher", null, "NetLauncher");
- //CopyFileToDirectory(File("./bin/patcher/BepInEx.Patcher.exe"), distPatcherDir);
- });
- Task("Pack")
- .IsDependentOn("MakeDist")
- .Does(() =>
- {
- var distDir = Directory("./bin/dist");
- var commitPrefix = isBleedingEdge ? $"_{currentCommitShort}_" : "_";
- Information("Packing BepInEx");
- ZipCompress(distDir + Directory("UnityMono_x86"), distDir + File($"BepInEx_UnityMono_x86{commitPrefix}{buildVersion}.zip"));
- ZipCompress(distDir + Directory("UnityMono_x64"), distDir + File($"BepInEx_UnityMono_x64{commitPrefix}{buildVersion}.zip"));
- ZipCompress(distDir + Directory("UnityMono_unix"), distDir + File($"BepInEx_UnityMono_unix{commitPrefix}{buildVersion}.zip"));
- ZipCompress(distDir + Directory("UnityIL2CPP_x86"), distDir + File($"BepInEx_UnityIL2CPP_x86{commitPrefix}{buildVersion}.zip"));
- ZipCompress(distDir + Directory("UnityIL2CPP_x64"), distDir + File($"BepInEx_UnityIL2CPP_x64{commitPrefix}{buildVersion}.zip"));
- ZipCompress(distDir + Directory("NetLauncher"), distDir + File($"BepInEx_NetLauncher{commitPrefix}{buildVersion}.zip"));
- // Information("Packing BepInEx.Patcher");
- // ZipCompress(distDir + Directory("patcher"), distDir + File($"BepInEx_Patcher{commitPrefix}{buildVersion}.zip"));
- if(isBleedingEdge)
- {
- var changelog = "";
- if(!string.IsNullOrEmpty(lastBuildCommit)) {
- changelog = TransformText("<ul><%changelog%></ul>")
- .WithToken("changelog", RunGit($"--no-pager log --no-merges --pretty=\"format:<li>(<code>%h</code>) [%an] %s</li>\" {lastBuildCommit}..HEAD"))
- .ToString();
- }
- FileWriteText(distDir + File("info.json"),
- SerializeJsonPretty(new Dictionary<string, object>{
- ["id"] = buildId.ToString(),
- ["date"] = DateTime.Now.ToString("o"),
- ["changelog"] = changelog,
- ["hash"] = currentCommit,
- ["artifacts"] = new Dictionary<string, object>[] {
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_UnityMono_x64{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx Unity Mono for Windows x64 machines"
- },
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_UnityMono_x86{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx Unity Mono for Windows x86 machines"
- },
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_unix{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx Unity Mono for Unix machines with GCC (Linux, MacOS)"
- },
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_UnityIL2CPP_x64{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx Unity IL2CPP for Windows x64 machines"
- },
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_UnityIL2CPP_x86{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx Unity IL2CPP for Windows x86 machines"
- },
- new Dictionary<string, object> {
- ["file"] = $"BepInEx_NetLauncher{commitPrefix}{buildVersion}.zip",
- ["description"] = "BepInEx .NET Launcher for .NET Framework/XNA games"
- },
- // new Dictionary<string, object> {
- // ["file"] = $"BepInEx_Patcher{commitPrefix}{buildVersion}.zip",
- // ["description"] = "Hardpatcher for BepInEx. IMPORTANT: USE ONLY IF DOORSTOP DOES NOT WORK FOR SOME REASON!"
- // }
- }
- }));
- }
- });
- RunTarget(target);
|