Don't treat FEATURE_CHANNEL_FORWARDING as servo usage in mixer and initialisation...
[betaflight.git] / .travis.yml
blob6b5339d12c777e43176967a40419f6a8addb3ca4
1 env:
2   - TARGET=CC3D
3   - TARGET=NAZE
4   - TARGET=STM32F3DISCOVERY
5   - TARGET=RMDO
6   - TARGET=SPRACINGF3
7   - TARGET=SPRACINGF3EVO
8   - TARGET=SPARKY
9   - TARGET=FURYF3
10   - TARGET=FURYF3_SPIFLASH
11   - TARGET=RCEXPLORERF3
12   
13 # use new docker environment
14 sudo: false
16 addons:
17   apt:
18     packages:
19       - build-essential
20       - git
21       - libc6-i386
22       - zlib1g-dev
23       - libssl-dev
24       - wkhtmltopdf
25       - libxml2-dev
26       - libxslt-dev
28 # We use cpp for unit tests, and c for the main project.
29 language: cpp
30 compiler: clang
32 before_install:
33   - curl --retry 10 --retry-max-time 120 -L "https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q2-update/+download/gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2" | tar xfj -
35 install:
36   - export PATH=$PATH:$PWD/gcc-arm-none-eabi-4_9-2015q2/bin
38 before_script: arm-none-eabi-gcc --version
39 script: ./.travis.sh
41 cache: apt
43 notifications:
44   email: false
45   webhooks:
46     urls:
47       - https://webhooks.gitter.im/e/34e795df229478ac3a3b
48     on_success: always
49     on_failure: always
50     on_start: never