Skip to content

Commit 5489ef2

Browse files
committed
ci: skip test_maps on s390x
It's flaky and OOMs pretty frequently. We get lots of signal on x86-64, so let's disable it on s390x. Signed-off-by: Andrii Nakryiko <[email protected]>
1 parent 2eec6bb commit 5489ef2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/scripts/matrix.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,12 @@ def tests(self) -> Dict[str, Any]:
9191
"test_progs_parallel",
9292
"test_progs_no_alu32",
9393
"test_progs_no_alu32_parallel",
94-
"test_maps",
9594
"test_verifier",
9695
]
9796

97+
if self.arch.value != "s390x":
98+
tests_list.append("test_maps")
99+
98100
if self.toolchain.version >= 18:
99101
tests_list.append("test_progs_cpuv4")
100102

0 commit comments

Comments
 (0)