-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
47 lines (44 loc) · 984 Bytes
/
Copy path.travis.yml
File metadata and controls
47 lines (44 loc) · 984 Bytes
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
# Configuration
os:
- linux
# - windows
language: cpp
# compiler:
# - gcc
# - clang
addons:
apt:
packages:
- gcc-avr
- avr-libc
- doxygen
- cppcheck
- cpputest
- graphviz
- socat
before_install:
- pip install --user cpp-coveralls
install: skip
jobs:
allow_failures:
- os: windows
include:
- stage: Check clang linux code
compiler: clang
script:
- make
- make install DESTDIR=test_path
- ./.travis/check_install.sh . test_path
- stage: Check gcc linux code
compiler: gcc
script:
- make
- make docs 1> /dev/null
- ./.travis/run_tests.sh
- make clean
- make EXTRA_CPPFLAGS="--coverage" check
after_success:
- coveralls -b . --exclude docs --exclude extra --exclude unittest --exclude bld --exclude tools --exclude examples --gcov-options '\-lp'
- stage: Check avr code
script:
- make ARCH=avr