From 0bf7c4c4d70614fb809e84a515ba5b76bde57e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 4 Jun 2026 23:03:12 +0200 Subject: [PATCH] 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 --- test/tests.zig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/tests.zig b/test/tests.zig index 2610a54ccd884aa35976335aa5bf0ca974d6f052..9136d1434f11e13087d163a31058e6ae5f5ba895 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -2648,6 +2648,11 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { continue; } + if (target.cpu.arch == .riscv64 and target.ofmt == .c) { + // https://codeberg.org/ziglang/zig/issues/30930 + continue; + } + if (std.mem.eql(u8, options.name, "libc")) { // The libc API tests obviously need to link libc. So for test // target entries where we wouldn't link libc by default, skip the -- 2.54.0