investigating memory issues
Build / build (push) Successful in 52s
Test / build_and_test (push) Failing after 11m29s

This commit is contained in:
2026-05-06 23:31:16 +02:00
parent 3162c6f356
commit 378602103d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ jobs:
which deqp-runner && deqp-runner --version || echo "deqp-runner not found" which deqp-runner && deqp-runner --version || echo "deqp-runner not found"
- name: Run Vulkan CTS - name: Run Vulkan CTS
run: zig build cts-soft --release=fast -- -j3 --deqp-test-oom=disable run: zig build cts-soft --release=fast -- -j3
continue-on-error: true continue-on-error: true
- name: Verify tests - name: Verify tests
+1
View File
@@ -329,6 +329,7 @@ fn addMultithreadedCTS(b: *std.Build, target: std.Build.ResolvedTarget, impl: *c
run.addArg("--"); run.addArg("--");
run.addArg(b.fmt("--deqp-archive-dir={s}", .{try cts.path("").getPath3(b, null).toString(b.allocator)})); run.addArg(b.fmt("--deqp-archive-dir={s}", .{try cts.path("").getPath3(b, null).toString(b.allocator)}));
run.addArg(b.fmt("--deqp-vk-library-path={s}", .{b.getInstallPath(.lib, impl_lib.out_lib_filename)})); run.addArg(b.fmt("--deqp-vk-library-path={s}", .{b.getInstallPath(.lib, impl_lib.out_lib_filename)}));
run.addArg("--deqp-test-oom=disable");
const run_step = b.step(b.fmt("cts-{s}", .{impl.name}), b.fmt("Run Vulkan conformance tests for libvulkan_{s} in a multithreaded environment", .{impl.name})); const run_step = b.step(b.fmt("cts-{s}", .{impl.name}), b.fmt("Run Vulkan conformance tests for libvulkan_{s} in a multithreaded environment", .{impl.name}));
run_step.dependOn(&run.step); run_step.dependOn(&run.step);