forked from iNavFlight/inav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·57 lines (47 loc) · 1.06 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
env:
# Specify the main Mafile supported goals.
- GOAL=test
- GOAL=targets-group-1
- GOAL=targets-group-2
- GOAL=targets-group-3
- GOAL=targets-group-4
- GOAL=targets-group-5
- GOAL=targets-group-6
- GOAL=targets-group-7
- GOAL=targets-group-rest
# use new docker environment
sudo: false
git:
depth: 5
addons:
apt:
packages:
- build-essential
- git
- libc6-i386
# We use cpp for unit tests, and c for the main project.
language: cpp
compiler: clang
before_install:
install:
- ./install-toolchain.sh
- export TOOLCHAINPATH=$PWD/gcc-arm-none-eabi-8-2018-q4-major/bin
- export PATH=$TOOLCHAINPATH:$PATH
before_script:
- $TOOLCHAINPATH/arm-none-eabi-gcc --version
- clang --version
- clang++ --version
script: ./.travis.sh
cache:
apt: true
directories:
- $PWD/gcc-arm-none-eabi-8-2018-q4-major
notifications:
#slack: inavflight:UWRoWFJ4cbbpHXT8HJJlAPXa
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/34e795df229478ac3a3b
on_success: always
on_failure: always
on_start: never