From 59e5e8abab813a8252ebff80e794b152c672ba50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juraj=20Linke=C5=A1?= Date: Mon, 11 Oct 2021 15:40:41 +0200 Subject: [PATCH] ci: update Meson option for generic build MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The way we're building DPDK in CI, with -Dmachine=default, has not been updated when the option got replaced to preserve a backwards-complatible build call to facilitate ABI verification between DPDK versions. Update the call to use -Dplatform=generic, which is the most up to date way to execute the same build which is now present in all DPDK versions the ABI check verifies. Signed-off-by: Juraj Linkeš Acked-by: Aaron Conole --- .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 91e43a975b..06aaa79100 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -77,7 +77,7 @@ else OPTS="$OPTS -Dexamples=all" fi -OPTS="$OPTS -Dmachine=default" +OPTS="$OPTS -Dplatform=generic" OPTS="$OPTS --default-library=$DEF_LIB" OPTS="$OPTS --buildtype=debugoptimized" OPTS="$OPTS -Dcheck_includes=true" -- 2.39.5