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