Skip to content

Commit dddddcf

Browse files
committed
disable RISC-V CI testing due to LLVM's O(N^2) codegen
tracked by #18872
1 parent d080622 commit dddddcf

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

test/tests.zig

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -412,22 +412,28 @@ const test_targets = blk: {
412412
.link_libc = true,
413413
},
414414

415-
.{
416-
.target = .{
417-
.cpu_arch = .riscv64,
418-
.os_tag = .linux,
419-
.abi = .none,
420-
},
421-
},
415+
// Disabled until LLVM fixes their O(N^2) codegen.
416+
// https://github.com/ziglang/zig/issues/18872
417+
//.{
418+
// .target = .{
419+
// .cpu_arch = .riscv64,
420+
// .os_tag = .linux,
421+
// .abi = .none,
422+
// },
423+
// .use_llvm = true,
424+
//},
422425

423-
.{
424-
.target = .{
425-
.cpu_arch = .riscv64,
426-
.os_tag = .linux,
427-
.abi = .musl,
428-
},
429-
.link_libc = true,
430-
},
426+
// Disabled until LLVM fixes their O(N^2) codegen.
427+
// https://github.com/ziglang/zig/issues/18872
428+
//.{
429+
// .target = .{
430+
// .cpu_arch = .riscv64,
431+
// .os_tag = .linux,
432+
// .abi = .musl,
433+
// },
434+
// .link_libc = true,
435+
// .use_llvm = true,
436+
//},
431437

432438
// https://github.com/ziglang/zig/issues/3340
433439
//.{

0 commit comments

Comments
 (0)