authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-04 23:03:12+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-04 23:05:49+02:00
log0bf7c4c4d70614fb809e84a515ba5b76bde57e19
tree1ca884b7c76079137d19df3650ffb777305a75b4
parent605c01c2dc7cfd5449a4b175bbc6e04a0bb75207
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: disable cbe module tests on riscv64-linux

They add way too much run time to the jobs. https://codeberg.org/ziglang/zig/issues/30930

1 files changed, 5 insertions(+), 0 deletions(-)

test/tests.zig+5
...@@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {...@@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step {
2648 continue;2648 continue;
2649 }2649 }
26502650
2651 if (target.cpu.arch == .riscv64 and target.ofmt == .c) {
2652 // https://codeberg.org/ziglang/zig/issues/30930
2653 continue;
2654 }
2655
2651 if (std.mem.eql(u8, options.name, "libc")) {2656 if (std.mem.eql(u8, options.name, "libc")) {
2652 // The libc API tests obviously need to link libc. So for test2657 // The libc API tests obviously need to link libc. So for test
2653 // target entries where we wouldn't link libc by default, skip the2658 // target entries where we wouldn't link libc by default, skip the