This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
61 lines (54 loc) · 1.78 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
58
59
60
61
language: cpp
compiler: gcc
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- autoconf
- automake
- m4
- gcc-4.9
- g++-4.9
before_install:
- git submodule update --init --recursive > /dev/null
- export CXX="g++-4.9"
install:
- "bash -ex ./install-wiringpi.sh"
before_script:
- "bash -ex ./prepare.sh"
- export TZ=UTC
script:
- make utesting && ./utesting
- make clean && ./configure CPPFLAGS="-DDEBUG" && make utesting && ./utesting
- make clean && ./configure CPPFLAGS="-DNO_SMS" && make utesting && ./utesting
- make clean && ./configure CPPFLAGS="-DDEBUG -DNO_SMS" && make utesting && ./utesting
- make clean && make
- make clean && ./configure CPPFLAGS="-DNO_POWER_OFF" && make
- make clean && ./configure CPPFLAGS="-DDEBUG" && make
- make clean && ./configure CPPFLAGS="-DNO_POWER_OFF -DDEBUG" && make
- make clean && ./configure CPPFLAGS="-DNO_SMS" && make
- make clean && ./configure CPPFLAGS="-DDEBUG -DNO_SMS" && make
- make clean && ./configure CPPFLAGS="-DSIM" && make
- make clean && ./configure CPPFLAGS="-DDEBUG -DSIM" && make
- make clean && ./configure CPPFLAGS="-DREAL_SIM" && make
- make clean && ./configure CPPFLAGS="-DDEBUG -DREAL_SIM" && make
- make clean && ./configure CPPFLAGS="-DNO_SMS -DREAL_SIM" && make
- make clean && ./configure CPPFLAGS="-DDEBUG -DNO_SMS -DREAL_SIM" && make
- make clean && ./configure CPPFLAGS="-DNO_SMS -D_SIM" && make
- make clean && ./configure CPPFLAGS="-DDEBUG -DNO_SMS -D_SIM" && make
branches:
only:
- master
- develop
- /^feature\/.+$/
- /^release\/.+$/
- /^hotfix\/.+$/
notifications:
email:
recipients:
- razican@protonmail.ch
- eneko.cruz@opendeusto.es
on_success: change
on_failure: always