source: grass/trunk/.travis.yml

Last change on this file was 74140, checked in by neteler, 5 years ago

Travis-CI: updated to use xenial instead of the outdated trusty dist (contributed by Sebastiaan Couwenberg)

File size: 881 bytes
Line 
1# Author: Ivan Mincik, ivan.mincik@gmail.com (linux)
2# Rainer M. Krug, Rainer@krugs.de (osx)
3
4language: c
5
6matrix:
7 include:
8 - os: linux
9 dist: xenial
10 compiler: gcc
11 sudo: required
12 - os: linux
13 dist: xenial
14 compiler: clang
15 sudo: required
16
17env:
18 global:
19 - CFLAGS="-Werror=implicit-function-declaration"
20
21before_install:
22 - ./.travis/$TRAVIS_OS_NAME.before_install.sh
23
24install:
25 - ./.travis/$TRAVIS_OS_NAME.install.sh
26
27script:
28 - ./.travis/$TRAVIS_OS_NAME.script.sh
29
30after_success:
31 - bash < (curl -s https://codecov.io/bash)
32
33notifications:
34 email:
35 recipients:
36 - grass-dev@lists.osgeo.org
37 - landa.martin@gmail.com
38 - wenzeslaus@gmail.com
39 on_success: change
40 on_failure: always
41 irc: "chat.freenode.net#grass"
42
Note: See TracBrowser for help on using the repository browser.