mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 08:45:30 +00:00
60376ae510
* feat: GtkSharp net6 workload * feat(Workload): GtkSharp template packs * chore: Support .NET SDK 6.0.300 And also changed the build script to target SDK bands. * build: Workload install and uninstall targets
256 lines
8.3 KiB
C#
256 lines
8.3 KiB
C#
#load CakeScripts\GAssembly.cake
|
|
#load CakeScripts\Settings.cake
|
|
#load CakeScripts\TargetEnvironment.cake
|
|
#addin "Cake.FileHelpers&version=5.0.0"
|
|
#addin "Cake.Incubator&version=7.0.0"
|
|
|
|
// VARS
|
|
|
|
Settings.Cake = Context;
|
|
Settings.Version = Argument("BuildVersion", "3.24.24.1");
|
|
Settings.BuildTarget = Argument("BuildTarget", "Default");
|
|
Settings.Assembly = Argument("Assembly", "");
|
|
var configuration = Argument("Configuration", "Release");
|
|
|
|
var msbuildsettings = new DotNetMSBuildSettings();
|
|
var list = new List<GAssembly>();
|
|
var supportedVersionBands = new List<string>() {"6.0.100", "6.0.200", "6.0.300"};
|
|
|
|
// TASKS
|
|
|
|
Task("Init")
|
|
.Does(() =>
|
|
{
|
|
if (!string.IsNullOrEmpty(EnvironmentVariable("GITHUB_ACTIONS")))
|
|
{
|
|
Settings.Version = "3.24.24." + EnvironmentVariable("GITHUB_RUN_NUMBER");
|
|
|
|
if (EnvironmentVariable("GITHUB_REF") != "refs/heads/master")
|
|
Settings.Version += "-develop";
|
|
}
|
|
|
|
Console.WriteLine("Version: " + Settings.Version);
|
|
|
|
// Assign some common properties
|
|
msbuildsettings = msbuildsettings.WithProperty("Version", Settings.Version);
|
|
msbuildsettings = msbuildsettings.WithProperty("Authors", "'GtkSharp Contributors'");
|
|
msbuildsettings = msbuildsettings.WithProperty("PackageLicenseUrl", "'https://github.com/GtkSharp/GtkSharp/blob/cakecore/LICENSE'");
|
|
|
|
// Add stuff to list
|
|
Settings.Init();
|
|
foreach(var gassembly in Settings.AssemblyList)
|
|
if(string.IsNullOrEmpty(Settings.Assembly) || Settings.Assembly == gassembly.Name)
|
|
list.Add(gassembly);
|
|
});
|
|
|
|
Task("Prepare")
|
|
.IsDependentOn("Clean")
|
|
.Does(() =>
|
|
{
|
|
// Build tools
|
|
DotNetRestore("Source/Tools/Tools.sln");
|
|
DotNetBuild("Source/Tools/Tools.sln", new DotNetBuildSettings {
|
|
Verbosity = DotNetVerbosity.Minimal,
|
|
Configuration = configuration
|
|
});
|
|
|
|
// Generate code and prepare libs projects
|
|
foreach(var gassembly in list)
|
|
gassembly.Prepare();
|
|
DotNetRestore("Source/GtkSharp.sln");
|
|
|
|
// Addin
|
|
DotNetRestore("Source/Addins/MonoDevelop.GtkSharp.Addin/MonoDevelop.GtkSharp.Addin.sln");
|
|
});
|
|
|
|
Task("Clean")
|
|
.IsDependentOn("Init")
|
|
.Does(() =>
|
|
{
|
|
foreach(var gassembly in list)
|
|
gassembly.Clean();
|
|
});
|
|
|
|
Task("FullClean")
|
|
.IsDependentOn("Clean")
|
|
.Does(() =>
|
|
{
|
|
DeleteDirectory("BuildOutput", new DeleteDirectorySettings {
|
|
Recursive = true,
|
|
Force = true
|
|
});
|
|
});
|
|
|
|
Task("Build")
|
|
.IsDependentOn("Prepare")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetBuildSettings
|
|
{
|
|
Configuration = configuration,
|
|
MSBuildSettings = msbuildsettings
|
|
};
|
|
|
|
if (list.Count == Settings.AssemblyList.Count)
|
|
DotNetBuild("Source/GtkSharp.sln", settings);
|
|
else
|
|
{
|
|
foreach(var gassembly in list)
|
|
DotNetBuild(gassembly.Csproj, settings);
|
|
}
|
|
});
|
|
|
|
Task("RunSamples")
|
|
.IsDependentOn("Build")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetBuildSettings
|
|
{
|
|
Configuration = configuration,
|
|
MSBuildSettings = msbuildsettings
|
|
};
|
|
|
|
DotNetBuild("Source/Samples/Samples.csproj", settings);
|
|
DotNetRun("Source/Samples/Samples.csproj");
|
|
});
|
|
|
|
Task("PackageNuGet")
|
|
.IsDependentOn("Build")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetPackSettings
|
|
{
|
|
MSBuildSettings = msbuildsettings,
|
|
Configuration = configuration,
|
|
OutputDirectory = "BuildOutput/NugetPackages",
|
|
NoBuild = true
|
|
};
|
|
|
|
foreach(var gassembly in list)
|
|
DotNetPack(gassembly.Csproj, settings);
|
|
});
|
|
|
|
Task("PackageWorkload")
|
|
.IsDependentOn("Build")
|
|
.Does(() =>
|
|
{
|
|
var packSettings = new DotNetPackSettings
|
|
{
|
|
MSBuildSettings = msbuildsettings,
|
|
Configuration = configuration,
|
|
OutputDirectory = "BuildOutput/NugetPackages",
|
|
// Some of the nugets here depend on output generated during build.
|
|
NoBuild = false
|
|
};
|
|
|
|
DotNetPack("Source/Workload/GtkSharp.Workload.Template.CSharp/GtkSharp.Workload.Template.CSharp.csproj", packSettings);
|
|
DotNetPack("Source/Workload/GtkSharp.Workload.Template.FSharp/GtkSharp.Workload.Template.FSharp.csproj", packSettings);
|
|
DotNetPack("Source/Workload/GtkSharp.Workload.Template.VBNet/GtkSharp.Workload.Template.VBNet.csproj", packSettings);
|
|
DotNetPack("Source/Workload/GtkSharp.Ref/GtkSharp.Ref.csproj", packSettings);
|
|
DotNetPack("Source/Workload/GtkSharp.Runtime/GtkSharp.Runtime.csproj", packSettings);
|
|
DotNetPack("Source/Workload/GtkSharp.Sdk/GtkSharp.Sdk.csproj", packSettings);
|
|
|
|
foreach (var band in supportedVersionBands)
|
|
{
|
|
packSettings.MSBuildSettings = packSettings.MSBuildSettings.WithProperty("_GtkSharpManifestVersionBand", band);
|
|
DotNetPack("Source/Workload/GtkSharp.NET.Sdk.Gtk/GtkSharp.NET.Sdk.Gtk.csproj", packSettings);
|
|
}
|
|
});
|
|
|
|
Task("PackageTemplates")
|
|
.IsDependentOn("Init")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetPackSettings
|
|
{
|
|
MSBuildSettings = msbuildsettings,
|
|
Configuration = configuration,
|
|
OutputDirectory = "BuildOutput/NugetPackages"
|
|
};
|
|
|
|
DotNetPack("Source/Templates/GtkSharp.Template.CSharp/GtkSharp.Template.CSharp.csproj", settings);
|
|
DotNetPack("Source/Templates/GtkSharp.Template.FSharp/GtkSharp.Template.FSharp.csproj", settings);
|
|
DotNetPack("Source/Templates/GtkSharp.Template.VBNet/GtkSharp.Template.VBNet.csproj", settings);
|
|
});
|
|
|
|
const string manifestName = "GtkSharp.NET.Sdk.Gtk";
|
|
var manifestPack = $"{manifestName}.Manifest-{TargetEnvironment.DotNetCliFeatureBand}.{Settings.Version}.nupkg";
|
|
var manifestPackPath = $"BuildOutput/NugetPackages/{manifestPack}";
|
|
|
|
var packNames = new List<string>()
|
|
{
|
|
"GtkSharp.Ref",
|
|
"GtkSharp.Runtime",
|
|
"GtkSharp.Sdk"
|
|
};
|
|
|
|
var templateLanguages = new List<string>()
|
|
{
|
|
"CSharp",
|
|
"FSharp",
|
|
"VBNet"
|
|
};
|
|
|
|
Task("InstallWorkload")
|
|
.IsDependentOn("PackageWorkload")
|
|
.IsDependentOn("PackageTemplates")
|
|
.Does(() =>
|
|
{
|
|
Console.WriteLine($"Installing workload for SDK version {TargetEnvironment.DotNetCliFeatureBand}, at {TargetEnvironment.DotNetInstallPath}");
|
|
Console.WriteLine($"Installing manifests to {TargetEnvironment.DotNetManifestPath}");
|
|
TargetEnvironment.InstallManifests(manifestName, manifestPackPath);
|
|
Console.WriteLine($"Installing packs to {TargetEnvironment.DotNetPacksPath}");
|
|
foreach (var name in packNames)
|
|
{
|
|
Console.WriteLine($"Installing {name}");
|
|
var pack = $"{name}.{Settings.Version}.nupkg";
|
|
var packPath = $"BuildOutput/NugetPackages/{pack}";
|
|
TargetEnvironment.InstallPack(name, Settings.Version, packPath);
|
|
}
|
|
Console.WriteLine($"Installing templates to {TargetEnvironment.DotNetTemplatePacksPath}");
|
|
foreach (var language in templateLanguages)
|
|
{
|
|
Console.WriteLine($"Installing {language} templates");
|
|
var pack = $"GtkSharp.Workload.Template.{language}.{Settings.Version}.nupkg";
|
|
var packPath = $"BuildOutput/NugetPackages/{pack}";
|
|
TargetEnvironment.InstallTemplatePack(pack, packPath);
|
|
}
|
|
Console.WriteLine($"Registering \"gtk\" installed workload...");
|
|
TargetEnvironment.RegisterInstalledWorkload("gtk");
|
|
});
|
|
|
|
Task("UninstallWorkload")
|
|
.Does(() =>
|
|
{
|
|
Console.WriteLine($"Uninstalling workload for SDK version {TargetEnvironment.DotNetCliFeatureBand}, at {TargetEnvironment.DotNetInstallPath}");
|
|
Console.WriteLine($"Removing manifests from {TargetEnvironment.DotNetManifestPath}");
|
|
TargetEnvironment.UninstallManifests(manifestName);
|
|
Console.WriteLine($"Removing packs from {TargetEnvironment.DotNetPacksPath}");
|
|
foreach (var name in packNames)
|
|
{
|
|
Console.WriteLine($"Removing {name}");
|
|
TargetEnvironment.UninstallPack(name, Settings.Version);
|
|
}
|
|
Console.WriteLine($"Removing templates from {TargetEnvironment.DotNetTemplatePacksPath}");
|
|
foreach (var language in templateLanguages)
|
|
{
|
|
Console.WriteLine($"Removing {language} templates");
|
|
var pack = $"GtkSharp.Workload.Template.{language}.{Settings.Version}.nupkg";
|
|
TargetEnvironment.UninstallTemplatePack(pack);
|
|
}
|
|
Console.WriteLine($"Unregistering \"gtk\" installed workload...");
|
|
TargetEnvironment.UnregisterInstalledWorkload("gtk");
|
|
});
|
|
|
|
// TASK TARGETS
|
|
|
|
Task("Default")
|
|
.IsDependentOn("Build")
|
|
.IsDependentOn("PackageNuGet")
|
|
.IsDependentOn("PackageWorkload")
|
|
.IsDependentOn("PackageTemplates");
|
|
|
|
// EXECUTION
|
|
|
|
RunTarget(Settings.BuildTarget);
|