mirror of https://github.com/ArduPilot/ardupilot
travis: limit CI tests for 4.0 plane and copter branches
This commit is contained in:
parent
4aa00e6540
commit
9790aae49c
|
@ -60,16 +60,13 @@ matrix:
|
|||
include:
|
||||
- if: type != cron
|
||||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="revo-bootloader periph-build CubeOrange-bootloader iofirmware stm32f7 stm32h7 fmuv2-plane"
|
||||
env: CI_BUILD_TARGET="stm32f7 stm32h7 fmuv2-plane"
|
||||
- if: type != cron
|
||||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="sitltest-copter"
|
||||
- if: type != cron
|
||||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="sitltest-quadplane sitltest-plane"
|
||||
- if: type != cron
|
||||
compiler: "clang-7"
|
||||
env: CI_BUILD_TARGET="sitltest-rover sitltest-sub sitltest-balancebot"
|
||||
- if: type != cron
|
||||
compiler: "gcc"
|
||||
env: CI_BUILD_TARGET="unit-tests"
|
||||
|
|
|
@ -171,7 +171,8 @@ for t in $CI_BUILD_TARGET; do
|
|||
--check-c-compiler="$c_compiler" \
|
||||
--check-cxx-compiler="$cxx_compiler"
|
||||
$waf clean
|
||||
$waf all
|
||||
$waf copter
|
||||
$waf plane
|
||||
ccache -s && ccache -z
|
||||
|
||||
if [[ $t == linux ]]; then
|
||||
|
@ -180,11 +181,8 @@ for t in $CI_BUILD_TARGET; do
|
|||
fi
|
||||
done
|
||||
|
||||
python Tools/autotest/param_metadata/param_parse.py --vehicle APMrover2
|
||||
python Tools/autotest/param_metadata/param_parse.py --vehicle AntennaTracker
|
||||
python Tools/autotest/param_metadata/param_parse.py --vehicle ArduCopter
|
||||
python Tools/autotest/param_metadata/param_parse.py --vehicle ArduPlane
|
||||
python Tools/autotest/param_metadata/param_parse.py --vehicle ArduSub
|
||||
|
||||
echo build OK
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue