Skip to content

Commit

Permalink
Disable selftests/sched_ext as they are failing randomly (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
theihor authored Dec 5, 2024
1 parent 052fc83 commit bcba78f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def tests(self) -> Dict[str, Any]:
if self.toolchain.version >= 18:
tests_list.append("test_progs_cpuv4")

if self.arch in [Arch.X86_64, Arch.AARCH64]:
tests_list.append("sched_ext")
# if self.arch in [Arch.X86_64, Arch.AARCH64]:
# tests_list.append("sched_ext")

if not self.parallel_tests:
tests_list = [test for test in tests_list if not test.endswith("parallel")]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kernel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
ARTIFACTS_ARCHIVE: "vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst"
BPF_NEXT_BASE_BRANCH: 'master'
BPF_NEXT_FETCH_DEPTH: 64 # A bit of history is needed to facilitate incremental builds
BUILD_SCHED_EXT_SELFTESTS: ${{ inputs.arch == 'x86_64' || inputs.arch == 'aarch64' && 'true' || '' }}
# BUILD_SCHED_EXT_SELFTESTS: ${{ inputs.arch == 'x86_64' || inputs.arch == 'aarch64' && 'true' || '' }}
KBUILD_OUTPUT: ${{ github.workspace }}/kbuild-output
KERNEL: ${{ inputs.kernel }}
KERNEL_ROOT: ${{ github.workspace }}
Expand Down

0 comments on commit bcba78f

Please sign in to comment.