Gyro Soft LPF Rework // Filter rework
[betaflight.git] / .travis.yml
blob754a436b8eba74792fc40a0320173df06ff17984
1 env:
2   - RUNTESTS=True
3   - PUBLISHMETA=True
4   - PUBLISHDOCS=True
5   - TARGET=CC3D
6   - TARGET=CC3D OPBL=yes
7   - TARGET=COLIBRI_RACE
8   - TARGET=CHEBUZZF3
9   - TARGET=CJMCU
10   - TARGET=EUSTM32F103RC
11   - TARGET=SPRACINGF3
12   - TARGET=NAZE
13   - TARGET=NAZE32PRO
14   - TARGET=OLIMEXINO
15   - TARGET=RMDO
16   - TARGET=PORT103R
17   - TARGET=SPARKY
18   - TARGET=STM32F3DISCOVERY
19   - TARGET=ALIENWIIF1
20   - TARGET=ALIENWIIF3
22 # use new docker environment
23 sudo: false
25 addons:
26   apt:
27     packages:
28       - build-essential
29       - git
30       - libc6-i386
31       - zlib1g-dev
32       - libssl-dev
33       - wkhtmltopdf
34       - libxml2-dev
35       - libxslt-dev
37 # We use cpp for unit tests, and c for the main project.
38 language: cpp
39 compiler: clang
41 before_install:
42   - 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 -
44 install:
45   - export PATH=$PATH:$PWD/gcc-arm-none-eabi-4_9-2015q2/bin
47 before_script: arm-none-eabi-gcc --version
48 script: ./.travis.sh
50 cache: apt
52 notifications:
53   irc: "chat.freenode.net#cleanflight"
54   use_notice: true
55   skip_join: true