From b928ac2a6633700af37271c17483fd50fcd6fc1d Mon Sep 17 00:00:00 2001 From: Ihor Solodrai Date: Thu, 16 Jan 2025 16:25:49 -0800 Subject: [PATCH] Disable test_progs-bpf_gcc Don't run GCC BPF runner, because too many tests are failing at this point. See: https://lore.kernel.org/bpf/87bjw6qpje.fsf@oracle.com/ Signed-off-by: Ihor Solodrai --- .github/scripts/matrix.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/scripts/matrix.py b/.github/scripts/matrix.py index 0a213a54..785c2337 100644 --- a/.github/scripts/matrix.py +++ b/.github/scripts/matrix.py @@ -101,8 +101,10 @@ def tests(self) -> Dict[str, Any]: # if self.arch in [Arch.X86_64, Arch.AARCH64]: # tests_list.append("sched_ext") - if self.arch == Arch.X86_64: - tests_list.append("test_progs-bpf_gcc") + # Don't run GCC BPF runner, because too many tests are failing + # See: https://lore.kernel.org/bpf/87bjw6qpje.fsf@oracle.com/ + # if self.arch == Arch.X86_64: + # tests_list.append("test_progs-bpf_gcc") if not self.parallel_tests: tests_list = [test for test in tests_list if not test.endswith("parallel")]