yes
Build / build (push) Successful in 1m2s
Test / build_and_test (push) Failing after 1h31m33s

This commit is contained in:
2026-05-09 00:02:28 +02:00
parent 6777a81330
commit 13b898a7cd
3 changed files with 4 additions and 4 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 -Ddebug-allocator=true -- -j3 run: zig build cts-soft --release=fast -Ddebug-allocator=true -- -j4
continue-on-error: true continue-on-error: true
- name: Verify tests - name: Verify tests
+2 -2
View File
@@ -31,8 +31,8 @@
.lazy = true, .lazy = true,
}, },
.SPIRV_Interpreter = .{ .SPIRV_Interpreter = .{
.url = "git+https://git.kbz8.me/kbz_8/SPIRV-Interpreter#5faf8fd30548f8bd96a18568fb21de698db64ca8", .url = "git+https://git.kbz8.me/kbz_8/SPIRV-Interpreter#4e852b5c07b7a3f70f9c361c873514eb70f73152",
.hash = "SPIRV_Interpreter-0.0.1-ajmpn_crBQAl1X8EYgNQjoTn_3XZ1DDOBCZMpfyD6MTu", .hash = "SPIRV_Interpreter-0.0.1-ajmpn_krBQAuTc6YvvzArCbZ8kl-58RIIjcHosa3OsZ-",
.lazy = true, .lazy = true,
}, },
//.SPIRV_Interpreter = .{ //.SPIRV_Interpreter = .{
+1 -1
View File
@@ -95,7 +95,7 @@ pub fn destroy(interface: *Interface, allocator: std.mem.Allocator) VkError!void
// All device memory allocations should've been freed by now // All device memory allocations should've been freed by now
const leaks = self.device_allocator.detectLeaks(); const leaks = self.device_allocator.detectLeaks();
if (leaks != 0) if (leaks != 0)
std.log.scoped(.vkDestroyDevice).err("Device was destroyed leaking {d}KB", .{@divTrunc(leaks, 1000)}) std.log.scoped(.vkDestroyDevice).err("Device was destroyed leaking {d:.3}KB", .{@as(f32, @floatFromInt(leaks)) / 1000})
else else
std.log.scoped(.vkDestroyDevice).debug("No device memory leaks detected", .{}); std.log.scoped(.vkDestroyDevice).debug("No device memory leaks detected", .{});
self.device_allocator.deinitWithoutLeakChecks(); self.device_allocator.deinitWithoutLeakChecks();