Skip to content

Commit

Permalink
matrix: enable sched_ext tests on x86_64 and aarch64
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Solodrai <[email protected]>
  • Loading branch information
theihor committed Nov 28, 2024
1 parent ce4b8af commit b3a1ec4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/scripts/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ 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 not self.parallel_tests:
tests_list = [test for test in tests_list if not test.endswith("parallel")]

Expand Down

0 comments on commit b3a1ec4

Please sign in to comment.