From bc1a7efba23896e39c8e97f6c52dd1028c361ab4 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Thu, 2 Jan 2025 14:03:01 +0100 Subject: [PATCH] CI: fix zephyr test on Zephyr for lpcxpresso54114 board The name of the board has been updated since the Zephyr commit: d8cfa6fb2916 ("boards: nxp: convert lpcxpresso54114 to hwmv2") Fix the build command according to the new name. The update is compatible with the Zephyr v3.7. Signed-off-by: Arnaud Pouliquen --- .github/actions/build_ci/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/build_ci/entrypoint.sh b/.github/actions/build_ci/entrypoint.sh index 4c57b274..82c348cd 100755 --- a/.github/actions/build_ci/entrypoint.sh +++ b/.github/actions/build_ci/entrypoint.sh @@ -131,10 +131,10 @@ build_zephyr(){ cd ./zephyr || exit 1 source zephyr-env.sh || exit 1 echo "build openamp sample" - west build --sysbuild -b lpcxpresso54114_m4 samples/subsys/ipc/openamp/ || exit 1 + west build --sysbuild -b lpcxpresso54114/lpc54114/m4 samples/subsys/ipc/openamp/ || exit 1 rm -r build echo "build openamp/remote sample" - west build --sysbuild -b lpcxpresso54114_m0 samples/subsys/ipc/openamp/remote/ || exit 1 + west build --sysbuild -b lpcxpresso54114/lpc54114/m0 samples/subsys/ipc/openamp/remote/ || exit 1 rm -r build echo "build openamp_rsc_table sample" west build --sysbuild -b stm32mp157c_dk2 samples/subsys/ipc/openamp_rsc_table || exit 1