Add arm64 support to packager for windows and osx (#29723)

Wanted to package a server for the funny on my macbook and noticed it was not working cause of this... now it will workie :3
This commit is contained in:
Vasilis
2024-08-09 15:01:13 +02:00
committed by GitHub
parent 3f4e093eaf
commit 873c314aec

View File

@@ -13,9 +13,11 @@ public static class ServerPackaging
private static readonly List<PlatformReg> Platforms = new() private static readonly List<PlatformReg> Platforms = new()
{ {
new PlatformReg("win-x64", "Windows", true), new PlatformReg("win-x64", "Windows", true),
new PlatformReg("win-arm64", "Windows", true),
new PlatformReg("linux-x64", "Linux", true), new PlatformReg("linux-x64", "Linux", true),
new PlatformReg("linux-arm64", "Linux", true), new PlatformReg("linux-arm64", "Linux", true),
new PlatformReg("osx-x64", "MacOS", true), new PlatformReg("osx-x64", "MacOS", true),
new PlatformReg("osx-arm64", "MacOS", true),
// Non-default platforms (i.e. for Watchdog Git) // Non-default platforms (i.e. for Watchdog Git)
new PlatformReg("win-x86", "Windows", false), new PlatformReg("win-x86", "Windows", false),
new PlatformReg("linux-x86", "Linux", false), new PlatformReg("linux-x86", "Linux", false),