forked from BepInEx/BepInEx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
315 lines (263 loc) · 12.8 KB
/
build.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#addin nuget:?package=Cake.FileHelpers&version=4.0.1
#addin nuget:?package=SharpZipLib&version=1.3.1
#addin nuget:?package=Cake.Compression&version=0.2.6
#addin nuget:?package=Cake.Json&version=6.0.1
#addin nuget:?package=Newtonsoft.Json&version=13.0.1
#addin nuget:?package=Cake.Http&version=1.3.0
var target = Argument("target", "Build");
var isBleedingEdge = Argument("bleeding_edge", false);
var buildId = Argument("build_id", 0);
var cleanDependencyCache = Argument("clean_build_cache", false);
var lastBuildCommit = Argument("last_build_commit", "");
var nugetPushSource = Argument("nuget_push_source", "https://nuget.bepinex.dev/v3/index.json");
var nugetPushKey = Argument("nuget_push_key", "");
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() { Arguments = command, RedirectStandardOutput = true });
process.WaitForExit();
return string.Join(separator, process.GetStandardOutput());
}
const string DEP_CACHE_NAME = ".dep_cache";
Task("Cleanup")
.Does(() =>
{
Information("Removing old binaries");
CreateDirectory("./bin");
CleanDirectory("./bin", fi => {
var cachePath = fi.Path.FullPath.Contains(DEP_CACHE_NAME);
return !cachePath || cleanDependencyCache && cachePath;
});
Information("Cleaning up old build objects");
CleanDirectories(GetDirectories("./BepInEx.*/**/bin/"));
CleanDirectories(GetDirectories("./BepInEx.*/**/obj/"));
});
Task("Build")
.IsDependentOn("Cleanup")
.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 DotNetBuildSettings {
Configuration = "Release",
MSBuildSettings = new() // Apparently needed in some versions of CakeBuild
};
if (isBleedingEdge)
{
buildSettings.MSBuildSettings.Properties["BuildInfo"] = new[] {
TransformText("BLEEDING EDGE Build #<%buildNumber%> from <%shortCommit%> at <%branchName%>")
.WithToken("buildNumber", buildId)
.WithToken("shortCommit", currentCommit)
.WithToken("branchName", currentBranch)
.ToString()
};
buildSettings.MSBuildSettings.Properties["AssemblyVersion"] = new[] { buildVersion + "." + buildId };
buildVersion += "-be." + buildId;
buildSettings.MSBuildSettings.Properties["Version"] = new[] { buildVersion };
}
foreach (var file in GetFiles("./BepInEx.*/*.csproj"))
{
DotNetBuild(file.FullPath, buildSettings);
}
});
const string DOORSTOP_VER_WIN = "3.4.0.0";
const string DOORSTOP_VER_UNIX = "1.5.1.0";
const string MONO_VER = "2021.6.24";
const string DOORSTOP_DLL = "winhttp.dll";
var depCachePath = Directory($"./bin/{DEP_CACHE_NAME}");
var doorstopPath = depCachePath + Directory("doorstop");
var monoPath = depCachePath + Directory("mono");
Task("DownloadDependencies")
.Does(() =>
{
var cacheFile = depCachePath + File("cache.json");
var cache = FileExists(cacheFile) ? DeserializeJsonFromFile<Dictionary<string, string>>(cacheFile) : new Dictionary<string, string>();
bool NeedsRedownload(string repo, string curVer)
{
if (!cache.TryGetValue(repo, out var ver) || ver != curVer)
{
cache[repo] = curVer;
return true;
}
return false;
}
CreateDirectory(doorstopPath);
CreateDirectory(monoPath);
if (NeedsRedownload("NeighTools/UnityDoorstop", DOORSTOP_VER_WIN))
{
Information("Updating Doorstop (Windows)");
var doorstopX64Path = doorstopPath + File("doorstop_x64.zip");
var doorstopX86Path = doorstopPath + File("doorstop_x86.zip");
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);
ZipUncompress(doorstopX86Path, doorstopPath + Directory("x86"));
ZipUncompress(doorstopX64Path, doorstopPath + Directory("x64"));
}
if (NeedsRedownload("NeighTools/UnityDoorstop.Unix", DOORSTOP_VER_UNIX))
{
Information("Updating Doorstop (Unix)");
var doorstopLinuxPath = doorstopPath + File("doorstop_linux.zip");
var doorstopMacPath = doorstopPath + File("doorstop_macos.zip");
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);
ZipUncompress(doorstopLinuxPath, doorstopPath + Directory("unix"));
ZipUncompress(doorstopMacPath, doorstopPath + Directory("unix"));
}
if (NeedsRedownload("BepInEx/mono", MONO_VER))
{
Information("Updating Mono");
var monoX64Path = doorstopPath + File("mono_x64.zip");
var monoX86Path = doorstopPath + File("mono_x86.zip");
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);
ZipUncompress(monoX64Path, monoPath + Directory("x64"));
ZipUncompress(monoX86Path, monoPath + Directory("x86"));
}
SerializeJsonToFile(cacheFile, cache);
});
Task("PushNuGet")
.IsDependentOn("Build")
.Does(() =>
{
if (string.IsNullOrEmpty(nugetPushSource))
{
Information("NuGet push source is missing");
return;
}
if (string.IsNullOrEmpty(nugetPushKey))
{
Information("NuGet push key is missing");
return;
}
foreach (var file in GetFiles("./bin/NuGet/*.nupkg"))
{
Information($"Pushing {file}");
DotNetNuGetPush(file.FullPath, new() {
Source = nugetPushSource,
ApiKey = nugetPushKey,
});
}
});
Task("MakeDist")
.IsDependentOn("Build")
.IsDependentOn("DownloadDependencies")
.Does(() =>
{
var distDir = Directory("./bin/dist");
CreateDirectory(distDir);
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)
{
var platformName = platform + (arch == null ? "" : "_" + arch);
var 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(monoPath + Directory(arch) + Directory("mono"), Directory(distArchDir) + Directory("mono"));
}
}
CopyFiles($"./bin/{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((string)(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");
});
Task("Pack")
.IsDependentOn("MakeDist")
.IsDependentOn("PushNuGet")
.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"));
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,
["short_hash"] = currentCommitShort,
["artifacts"] = new Dictionary<string, object>[] {
new() {
["file"] = $"BepInEx_UnityMono_x64{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Windows x64 games"
},
new() {
["file"] = $"BepInEx_UnityMono_x86{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Windows x86 games"
},
new() {
["file"] = $"BepInEx_UnityMono_unix{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Unix games using GCC (Linux, MacOS)"
},
new() {
["file"] = $"BepInEx_UnityIL2CPP_x64{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity IL2CPP for Windows x64 games"
},
new() {
["file"] = $"BepInEx_UnityIL2CPP_x86{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity IL2CPP for Windows x86 games"
},
new() {
["file"] = $"BepInEx_NetLauncher{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx .NET Launcher for .NET Framework/XNA games"
},
}
}));
}
});
RunTarget(target);