forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (38 loc) · 962 Bytes
/
.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
# Author: Ivan Mincik, [email protected] (linux)
# Rainer M. Krug, [email protected] (osx)
language: c
cache: ccache
matrix:
include:
- os: linux
dist: xenial
compiler: gcc
sudo: required
env:
CC=gcc
- os: linux
dist: xenial
compiler: clang
sudo: required
env:
CC=clang
env:
global:
- CFLAGS="-Werror=implicit-function-declaration"
before_install:
- ./.travis/$TRAVIS_OS_NAME.before_install.sh
install:
- ./.travis/$TRAVIS_OS_NAME.install.sh
script:
- ./.travis/$TRAVIS_OS_NAME.script.sh
after_success:
- bash < (curl -s https://codecov.io/bash)
notifications:
email:
recipients:
on_success: change
on_failure: always
irc: "chat.freenode.net#grass"