UI work to fill SBOM sourcing management gap. UI planning remaining functionality exposure. Work on CI/Tests stabilization

Introduces CGS determinism test runs to CI workflows for Windows, macOS, Linux, Alpine, and Debian, fulfilling CGS-008 cross-platform requirements. Updates local-ci scripts to support new smoke steps, test timeouts, progress intervals, and project slicing for improved test isolation and diagnostics.
This commit is contained in:
master
2025-12-29 19:12:38 +02:00
parent 41552d26ec
commit a4badc275e
286 changed files with 50918 additions and 992 deletions

View File

@@ -16,7 +16,10 @@ public sealed class SmartDiffSchemaValidationTests
var schemaPath = Path.Combine(AppContext.BaseDirectory, "schemas", "stellaops-smart-diff.v1.schema.json");
File.Exists(schemaPath).Should().BeTrue($"schema file should be copied to '{schemaPath}'");
var schema = JsonSchema.FromText(File.ReadAllText(schemaPath));
var schema = JsonSchema.FromText(File.ReadAllText(schemaPath), new BuildOptions
{
SchemaRegistry = new SchemaRegistry()
});
using var doc = JsonDocument.Parse("""
{
"schemaVersion": "1.0.0",
@@ -80,7 +83,10 @@ public sealed class SmartDiffSchemaValidationTests
public void SmartDiffSchema_RejectsInvalidReachabilityClass()
{
var schemaPath = Path.Combine(AppContext.BaseDirectory, "schemas", "stellaops-smart-diff.v1.schema.json");
var schema = JsonSchema.FromText(File.ReadAllText(schemaPath));
var schema = JsonSchema.FromText(File.ReadAllText(schemaPath), new BuildOptions
{
SchemaRegistry = new SchemaRegistry()
});
using var doc = JsonDocument.Parse("""
{
"schemaVersion": "1.0.0",