zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit dddddcffd0a3cbfab670ab91226e60e8a5a65c67 (tree)
parent d080622cc3f5db1ae3cd628c21c1ffaeb2b899d5
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 19 Apr 2024 20:24:57 -0700

disable RISC-V CI testing due to LLVM's O(N^2) codegen

tracked by #18872

Diffstat:
Mtest/tests.zig | 36+++++++++++++++++++++---------------
1 file changed, 21 insertions(+), 15 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -412,22 +412,28 @@ const test_targets = blk: { .link_libc = true, }, - .{ - .target = .{ - .cpu_arch = .riscv64, - .os_tag = .linux, - .abi = .none, - }, - }, + // Disabled until LLVM fixes their O(N^2) codegen. + // https://github.com/ziglang/zig/issues/18872 + //.{ + // .target = .{ + // .cpu_arch = .riscv64, + // .os_tag = .linux, + // .abi = .none, + // }, + // .use_llvm = true, + //}, - .{ - .target = .{ - .cpu_arch = .riscv64, - .os_tag = .linux, - .abi = .musl, - }, - .link_libc = true, - }, + // Disabled until LLVM fixes their O(N^2) codegen. + // https://github.com/ziglang/zig/issues/18872 + //.{ + // .target = .{ + // .cpu_arch = .riscv64, + // .os_tag = .linux, + // .abi = .musl, + // }, + // .link_libc = true, + // .use_llvm = true, + //}, // https://github.com/ziglang/zig/issues/3340 //.{