re-adding env vars
Some checks failed
Build / build (push) Failing after 24s
Test / build_and_test (push) Successful in 11m5s

This commit is contained in:
2026-04-18 14:14:22 +02:00
parent 65c51b8213
commit 8f68ce4bf7
6 changed files with 89 additions and 60 deletions

View File

@@ -51,7 +51,6 @@ pub fn build(b: *std.Build) !void {
const lib_mod = b.createModule(.{
.root_source_file = b.path(impl.root_source_file),
.target = target,
.link_libc = true,
.optimize = optimize,
.imports = &.{
.{ .name = "base", .module = base_mod },
@@ -273,9 +272,9 @@ fn addMultithreadedCTS(b: *std.Build, target: std.Build.ResolvedTarget, impl: *c
run.addArg("run");
run.addArg("--deqp");
run.addArg(b.fmt("{s}{s}", .{ cache_path, cts_exe_path }));
run.addArg(cts_exe_path);
run.addArg("--caselist");
run.addArg(b.fmt("{s}{s}", .{ cache_path, mustpass_path }));
run.addArg(mustpass_path);
run.addArg("--output");
run.addArg("./cts");
run.addArg("--timeout");