Skip to content

Commit

Permalink
CI: fix Zephyr build issue resulting from the introduction of sysbuild
Browse files Browse the repository at this point in the history
"Sysbuild is a higher-level build system that can be used to combine
multiple other build systems together"

Add the option by default for all platform as it is compatible with
a single image.

Signed-off-by: Arnaud Pouliquen <[email protected]>
  • Loading branch information
arnopo committed Nov 23, 2022
1 parent 3a9119d commit 452510d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build_ci/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ build_zephyr(){
cd ./zephyr || exit 1
source zephyr-env.sh || exit 1
echo "build openamp sample"
west build -b lpcxpresso54114_m4 samples/subsys/ipc/openamp/ || exit 1
west build --sysbuild -b lpcxpresso54114_m4 samples/subsys/ipc/openamp/ || exit 1
rm -r build
echo "build openamp/remote sample"
west build -b lpcxpresso54114_m0 samples/subsys/ipc/openamp/remote/ || exit 1
west build --sysbuild -b lpcxpresso54114_m0 samples/subsys/ipc/openamp/remote/ || exit 1
rm -r build
echo "build openamp_rsc_table sample"
west build -b stm32mp157c_dk2 samples/subsys/ipc/openamp_rsc_table || exit 1
west build --sysbuild -b stm32mp157c_dk2 samples/subsys/ipc/openamp_rsc_table || exit 1
exit 0
}

Expand Down

0 comments on commit 452510d

Please sign in to comment.