adding base matrix management
Build / build (push) Successful in 1m33s
Test / build (push) Successful in 10m31s

This commit is contained in:
2026-05-11 01:48:13 +02:00
parent 9d20363ae8
commit 769009ad5e
8 changed files with 145 additions and 11 deletions
+8 -1
View File
@@ -153,9 +153,15 @@ fn addZigTests(
const no_test = b.option(bool, "no-test", "Skip unit test dependencies fetch") orelse false;
if (no_test) return;
const test_filter = b.option(
[]const u8,
"test-filter",
"Only run tests whose name contains this substring",
);
const nzsl = b.lazyDependency("NZSL", .{
.target = target,
.optimize = optimize,
.optimize = .ReleaseFast,
}) orelse return;
const tests = b.addTest(.{
@@ -173,6 +179,7 @@ fn addZigTests(
.path = b.path("test/test_runner.zig"),
.mode = .simple,
},
.filters = if (test_filter) |filter| &.{filter} else &.{},
.use_llvm = use_llvm,
});