authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-26 15:40:22+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-05-26 15:40:42+02:00
loga6275ad16f7441725c87429406452be69e480934
treeac1099585f5db1598fd308dbe7dab30a16280a0e
parent0b4132b7a77766a673809437aba5ecbb1a041d39
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: add riscv32-netbsd-none and riscv64-netbsd-none to module test matrix


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

test/tests.zig+18
......@@ -1362,6 +1362,24 @@ const module_test_targets = blk: {
13621362 .link_libc = true,
13631363 },
13641364
1365 .{
1366 .target = .{
1367 .cpu_arch = .riscv32,
1368 .os_tag = .netbsd,
1369 .abi = .none,
1370 },
1371 .link_libc = true,
1372 },
1373
1374 .{
1375 .target = .{
1376 .cpu_arch = .riscv64,
1377 .os_tag = .netbsd,
1378 .abi = .none,
1379 },
1380 .link_libc = true,
1381 },
1382
13651383 .{
13661384 .target = .{
13671385 .cpu_arch = .x86,