authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-09-08 18:54:07-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-09-20 18:33:00-07:00
logc369def08e1eeb118b86cebb2dcf2626eb085093
treefbac28328b71b8aac755a5d5566e7fe0d622b0a7
parentc0bbddb0071830eb9a6afd96124a24176f263b6a

disable spirv64-vulkan coverage

Disabled due to no active maintainer (feel free to fix the failures and then re-enable at any time). The failures occur due to changing AIR from the frontend, and backend being incomplete.

1 files changed, 12 insertions(+), 9 deletions(-)

test/tests.zig+12-9
......@@ -1344,15 +1344,18 @@ const test_targets = blk: {
13441344
13451345 // SPIR-V Targets
13461346
1347 .{
1348 .target = std.Target.Query.parse(.{
1349 .arch_os_abi = "spirv64-vulkan",
1350 .cpu_features = "vulkan_v1_2+float16+float64",
1351 }) catch unreachable,
1352 .use_llvm = false,
1353 .use_lld = false,
1354 .skip_modules = &.{ "c-import", "zigc", "std" },
1355 },
1347 // Disabled due to no active maintainer (feel free to fix the failures
1348 // and then re-enable at any time). The failures occur due to changing AIR
1349 // from the frontend, and backend being incomplete.
1350 //.{
1351 // .target = std.Target.Query.parse(.{
1352 // .arch_os_abi = "spirv64-vulkan",
1353 // .cpu_features = "vulkan_v1_2+float16+float64",
1354 // }) catch unreachable,
1355 // .use_llvm = false,
1356 // .use_lld = false,
1357 // .skip_modules = &.{ "c-import", "zigc", "std" },
1358 //},
13561359
13571360 // WASI Targets
13581361