Skip to content

Commit

Permalink
CI: added test for new without NEW_NOTHROW
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Jun 1, 2024
1 parent b47ecfb commit 919d0d9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test_chibios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ jobs:
CubeOrange-PPP,
SOHW,
Pixhawk6X-PPPGW,
new-check,
]
toolchain: [
chibios,
Expand Down
12 changes: 12 additions & 0 deletions Tools/scripts/build_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,18 @@ for t in $CI_BUILD_TARGET; do
$waf bootloader
continue
fi

if [ "$t" == "new-check" ]; then
echo "Building Pixhawk6X with new check"
$waf configure --board Pixhawk6X --enable-new-checking
$waf clean
$waf
echo "Building Pixhawk6X-PPPGW with new check"
$waf configure --board Pixhawk6X-PPPGW --enable-new-checking
$waf clean
$waf AP_Periph
continue
fi

if [ "$t" == "dds-stm32h7" ]; then
echo "Building with DDS support on a STM32H7"
Expand Down

0 comments on commit 919d0d9

Please sign in to comment.