diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-08 08:28:20 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-08 08:28:20 -0700 |
| commit | db021c4fd1cffc1949a6afcb43bc570aeab0a496 (patch) | |
| tree | 7480718025d3b475b02d9962834b385a637e43a4 /test/tests.zig | |
| parent | 5955ba4f53d2bf90093417f6eb4967cec1eeb3e5 (diff) | |
| download | zig-db021c4fd1cffc1949a6afcb43bc570aeab0a496.tar.gz zig-db021c4fd1cffc1949a6afcb43bc570aeab0a496.zip | |
CI: disable self-hosted riscv64
it's missing some critical features like `@fieldParentPtr` and `@memmove`
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/test/tests.zig b/test/tests.zig index 872bc6d548..3693e18d91 100644 --- a/test/tests.zig +++ b/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, |
