1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Author: Ivan Mincik, ivan.mincik@gmail.com (linux)
- # Rainer M. Krug, Rainer@krugs.de (osx)
- language: c
- cache: ccache
- matrix:
- include:
- - os: linux
- dist: focal
- compiler: gcc
- sudo: required
- env:
- CC=gcc
- - os: linux
- dist: focal
- 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:
- irc: "chat.freenode.net#grass"
|