Skip to content

Commit f77a54b

Browse files
committed
Disable selftests/sched_ext
Disable again, as the issue is still present: https://lore.kernel.org/bpf/hzCmjmGwkKFxQBCFWB4lo3HRGK-vWCBZq1DQNcNEuYkTOT8r5cw_K4ir7gDnGl0REqjD_hnExw9Mkbra0_uObLzMXdRwOb7l8dNuAx_ddvA=@pm.me/ Signed-off-by: Ihor Solodrai <ihor.solodrai@pm.me>
1 parent 8302ea9 commit f77a54b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/matrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ def tests(self) -> Dict[str, Any]:
9898
if self.toolchain.version >= 18:
9999
tests_list.append("test_progs_cpuv4")
100100

101-
if self.arch in [Arch.X86_64, Arch.AARCH64]:
102-
tests_list.append("sched_ext")
101+
# if self.arch in [Arch.X86_64, Arch.AARCH64]:
102+
# tests_list.append("sched_ext")
103103

104104
if not self.parallel_tests:
105105
tests_list = [test for test in tests_list if not test.endswith("parallel")]

.github/workflows/kernel-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
ARTIFACTS_ARCHIVE: "vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst"
4949
BPF_NEXT_BASE_BRANCH: 'master'
5050
BPF_NEXT_FETCH_DEPTH: 64 # A bit of history is needed to facilitate incremental builds
51-
BUILD_SCHED_EXT_SELFTESTS: ${{ inputs.arch == 'x86_64' || inputs.arch == 'aarch64' && 'true' || '' }}
51+
# BUILD_SCHED_EXT_SELFTESTS: ${{ inputs.arch == 'x86_64' || inputs.arch == 'aarch64' && 'true' || '' }}
5252
KBUILD_OUTPUT: ${{ github.workspace }}/kbuild-output
5353
KERNEL: ${{ inputs.kernel }}
5454
KERNEL_ROOT: ${{ github.workspace }}

0 commit comments

Comments
 (0)