Tools: Reintroduce arduplane to CI script

This commit is contained in:
Michael du Breuil 2018-04-10 15:43:39 -07:00 committed by Andrew Tridgell
parent bf6e1993a1
commit f19d01332b

View File

@ -57,6 +57,17 @@ for t in $CI_BUILD_TARGET; do
ccache -s && ccache -z ccache -s && ccache -z
continue continue
fi fi
if [ $t == "sitltest-plane" ]; then
echo "Installing pymavlink"
git submodule init
git submodule update
(cd modules/mavlink/pymavlink && python setup.py build install --user)
unset BUILDROOT
echo "Running SITL Plane test"
Tools/autotest/autotest.py build.ArduPlane fly.ArduPlane
ccache -s && ccache -z
continue
fi
if [ $t == "sitltest-quadplane" ]; then if [ $t == "sitltest-quadplane" ]; then
echo "Installing pymavlink" echo "Installing pymavlink"
git submodule init git submodule init