Skip to content

Commit

Permalink
Tools: split dds test into SITL and STM
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr authored and Ryanf55 committed Mar 21, 2023
1 parent f586ad5 commit 0bc194d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Tools/scripts/build_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,23 @@ 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
$waf copter
$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"
Expand Down

0 comments on commit 0bc194d

Please sign in to comment.