fix iniital and other non-contentious typos in Cli.md
[inav.git] / .travis.yml
blob18182d074fdabe7e8df7786a7146d8768c7a30d9
1 env:
2 # Specify the main Mafile supported goals.
3   - GOAL=test
4   - GOAL=targets-group-1
5   - GOAL=targets-group-2
6   - GOAL=targets-group-3
7   - GOAL=targets-group-4
8   - GOAL=targets-group-rest
10 # use new docker environment
11 sudo: false
13 git:
14   depth: 5
16 addons:
17   apt:
18     packages:
19       - build-essential
20       - git
21       - libc6-i386
23 # We use cpp for unit tests, and c for the main project.
24 language: cpp
25 compiler: clang
27 before_install:
29 install:
30   - ./install-toolchain.sh
31   - export TOOLCHAINPATH=$PWD/gcc-arm-none-eabi-6-2017-q2-update/bin
32   - export PATH=$TOOLCHAINPATH:$PATH
34 before_script:
35   - $TOOLCHAINPATH/arm-none-eabi-gcc --version
36   - clang --version
37   - clang++ --version
39 script: ./.travis.sh
41 cache: 
42   apt: true
43   directories:
44   - $PWD/gcc-arm-none-eabi-6-2017-q2-update
46 notifications:
47   #slack: inavflight:UWRoWFJ4cbbpHXT8HJJlAPXa
48   email: false
49   webhooks:
50     urls:
51       - https://webhooks.gitter.im/e/34e795df229478ac3a3b
52     on_success: always
53     on_failure: always
54     on_start: never