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 <arnaud.pouliquen@foss.st.com>
This commit is contained in:
Arnaud Pouliquen
2025-01-08 09:16:19 +01:00
committed by Arnaud Pouliquen
parent 4ace3543ae
commit bc1a7efba2
+2 -2
View File
@@ -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