Commit db021c4fd1

Andrew Kelley <andrew@ziglang.org>
2025-07-08 17:28:20
CI: disable self-hosted riscv64
it's missing some critical features like `@fieldParentPtr` and `@memmove`
1 parent 5955ba4
Changed files (1)
test/tests.zig
@@ -918,14 +918,16 @@ const test_targets = blk: {
             .link_libc = true,
         },
 
-        .{
-            .target = std.Target.Query.parse(.{
-                .arch_os_abi = "riscv64-linux-none",
-                .cpu_features = "baseline+v+zbb",
-            }) catch unreachable,
-            .use_llvm = false,
-            .use_lld = false,
-        },
+        // TODO implement codegen airFieldParentPtr
+        // TODO implement airMemmove for riscv64
+        //.{
+        //    .target = std.Target.Query.parse(.{
+        //        .arch_os_abi = "riscv64-linux-none",
+        //        .cpu_features = "baseline+v+zbb",
+        //    }) catch unreachable,
+        //    .use_llvm = false,
+        //    .use_lld = false,
+        //},
         .{
             .target = .{
                 .cpu_arch = .riscv64,