Skip to content

Commit 8302ea9

Browse files
committed
Revert "Disable selftests/sched_ext (kernel-patches#321)"
This reverts commit 073e595.
1 parent 073e595 commit 8302ea9

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)