From f01a768e95e2532674b376b51193ebebb536f87d Mon Sep 17 00:00:00 2001 From: David Marchand Date: Thu, 6 Jun 2024 15:11:12 +0200 Subject: [PATCH] ci: Restore vhost-user unit tests in check-dpdk. Following a rework in the DPDK cache, the PATH variable is incorrectly set, resulting in dpdk-testpmd not being available. Because of this, vhost-user unit tests were skipped in GHA runs. Fixes: 8893e24d9d09 ("dpdk: Update to use v23.11.") Signed-off-by: David Marchand Acked-by: Kevin Traynor Acked-by: Eelco Chaudron --- .ci/linux-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index bf9d6241d..702feeb3b 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -25,7 +25,7 @@ function install_dpdk() export PKG_CONFIG_PATH=$DPDK_LIB/pkgconfig/:$PKG_CONFIG_PATH # Expose dpdk binaries. - export PATH=$(pwd)/dpdk-dir/build/bin:$PATH + export PATH=$(pwd)/dpdk-dir/bin:$PATH if [ ! -f "${VERSION_FILE}" ]; then echo "Could not find DPDK in $DPDK_INSTALL_DIR"