diff --git a/.github/scripts/matrix.py b/.github/scripts/matrix.py index 0a213a5..785c233 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")]