CI: add dotnet --info / df -h / free -m diagnostics and an explicit 'Restore NuGet packages' step before build to isolate restore failures (build of e15f650 on main exited with code -1 and zero dotnet output). #5

Merged
gsadmin merged 27 commits from dev into main 2026-06-05 01:24:51 +00:00
Showing only changes of commit 4bcdf372d4 - Show all commits
@@ -0,0 +1,65 @@
using System;
using System.IO;
using System.Management.Automation;
using System.Text;
using PSInfisicalAPI.Models;
namespace PSInfisicalAPI.Cmdlets
{
[Cmdlet(VerbsData.Export, "InfisicalScepMdmProfile", SupportsShouldProcess = true)]
[OutputType(typeof(FileInfo))]
public sealed class ExportInfisicalScepMdmProfileCmdlet : InfisicalCmdletBase
{
private const string Component = "ExportInfisicalScepMdmProfileCmdlet";
[Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)]
[Alias("Profile", "ScepProfile")]
public InfisicalScepMdmProfile InputObject { get; set; }
[Parameter(Mandatory = true, Position = 1)]
public string Path { get; set; }
[Parameter] public SwitchParameter Force { get; set; }
[Parameter] public SwitchParameter PassThru { get; set; }
protected override void ProcessRecord()
{
try
{
if (InputObject == null) { throw new InvalidOperationException("InputObject is required."); }
string resolvedPath = SessionState.Path.GetUnresolvedProviderPathFromPSPath(Path);
if (File.Exists(resolvedPath) && !Force.IsPresent)
{
Logger.Warning(Component, string.Concat("File '", resolvedPath, "' already exists. Pass -Force to overwrite. Skipping export."));
return;
}
if (!ShouldProcess(resolvedPath, "Write SyncML SCEP MDM profile"))
{
return;
}
string directory = System.IO.Path.GetDirectoryName(resolvedPath);
if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
Logger.Verbose(Component, string.Concat("Created directory '", directory, "'."));
}
string syncMl = InputObject.ToSyncMl();
File.WriteAllText(resolvedPath, syncMl, new UTF8Encoding(false));
Logger.Information(Component, string.Concat("Wrote SCEP MDM profile to '", resolvedPath, "' (UniqueId=", InputObject.UniqueId, ")."));
if (PassThru.IsPresent)
{
WriteObject(new FileInfo(resolvedPath));
}
}
catch (Exception exception)
{
ThrowTerminatingForException(Component, "ExportScepMdmProfile", exception);
}
}
}
}