CI: added CubeOrange-PPP build test

This commit is contained in:
Andrew Tridgell 2023-12-26 18:49:49 +11:00
parent 229a527fed
commit eb6c62f319
2 changed files with 10 additions and 1 deletions

View File

@ -155,7 +155,8 @@ jobs:
CubeRedPrimary-bootloader, CubeRedPrimary-bootloader,
configure-all, configure-all,
build-options-defaults-test, build-options-defaults-test,
signing signing,
CubeOrange-PPP,
] ]
toolchain: [ toolchain: [
chibios, chibios,

View File

@ -325,6 +325,14 @@ for t in $CI_BUILD_TARGET; do
continue continue
fi fi
if [ "$t" == "CubeOrange-PPP" ]; then
echo "Building CubeOrange-PPP"
$waf configure --board CubeOrange --enable-ppp
$waf clean
$waf copter
continue
fi
if [ "$t" == "dds-stm32h7" ]; then if [ "$t" == "dds-stm32h7" ]; then
echo "Building with DDS support on a STM32H7" echo "Building with DDS support on a STM32H7"
$waf configure --board Durandal --enable-dds $waf configure --board Durandal --enable-dds