Skip to content

Commit

Permalink
Tools: add logger metadata generation to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker authored and tridge committed Nov 5, 2024
1 parent 84d8af8 commit 9e4bdf3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Tools/scripts/build_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function install_mavproxy() {
popd
mavproxy_installed=1
# now uninstall the version of pymavlink pulled in by MAVProxy deps:
python -m pip uninstall -y pymavlink
python3 -m pip uninstall -y pymavlink
fi
}

Expand Down Expand Up @@ -512,7 +512,14 @@ for t in $CI_BUILD_TARGET; do

if [ "$t" == "param_parse" ]; then
for v in Rover AntennaTracker ArduCopter ArduPlane ArduSub Blimp AP_Periph; do
python Tools/autotest/param_metadata/param_parse.py --vehicle $v
python3 Tools/autotest/param_metadata/param_parse.py --vehicle $v
done
continue
fi

if [ "$t" == "logger_metadata" ]; then
for v in Rover Tracker Copter Plane Sub Blimp; do
python3 Tools/autotest/logger_metadata/parse.py --vehicle $v
done
continue
fi
Expand Down

0 comments on commit 9e4bdf3

Please sign in to comment.