It looks like there is some system level issue with the new GitHub runner images that makes AF_XDP ports lock up the system when traffic is running through them. This makes our system tests for DPDK and AF_XDP hang and timeout, because both depend on AF_XDP interfaces.
Disabling these system tests for now until we figure out what is going on. Link: https://github.com/actions/runner-images/issues/13871 Signed-off-by: Ilya Maximets <[email protected]> --- .github/workflows/build-and-test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index f3d490156..f1d006de6 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -181,10 +181,10 @@ jobs: opts: --enable-shared - compiler: gcc - testsuite: check check-dpdk + testsuite: check dpdk: dpdk - compiler: clang - testsuite: check check-dpdk + testsuite: check dpdk: dpdk - compiler: gcc @@ -261,10 +261,6 @@ jobs: dpdk: dpdk testsuite: check-system-tso - - compiler: gcc - dpdk: dpdk - testsuite: check-afxdp - steps: - name: checkout uses: actions/checkout@v6 -- 2.53.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
