diff --git a/Tools/scripts/build_ci.sh b/Tools/scripts/build_ci.sh index 3232ab6fe0c79..e01bc5f3a9b81 100755 --- a/Tools/scripts/build_ci.sh +++ b/Tools/scripts/build_ci.sh @@ -308,7 +308,7 @@ for t in $CI_BUILD_TARGET; do continue fi - if [ "$t" == "enable-dds" ]; then + if [ "$t" == "dds-stm32h7" ]; then echo "Building with DDS support on a STM32H7" $waf configure --board Durandal --enable-dds $waf clean @@ -316,6 +316,15 @@ for t in $CI_BUILD_TARGET; do $waf plane continue fi + + if [ "$t" == "dds-sitl" ]; then + echo "Building with DDS support on SITL" + $waf configure --board sitl --enable-dds + $waf clean + $waf copter + $waf plane + continue + fi if [ "$t" == "fmuv2-plane" ]; then echo "Building fmuv2 plane"