blob: fb2d83e13d8eac7a95c7699ce3f8d4fbddc3f701 (
plain)
- os:
- - linux
- - osx
- language: c
- compiler:
- - clang
- - gcc
- before_install:
- # we need a more recent cmake than travis/linux provides (at least 2.8.9):
- - |
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]
- then
- echo 'yes' | sudo add-apt-repository ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq cmake python3 valgrind
- elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]
- then
- # We test on OSX without python3, to make sure that works
- fi
- script:
- - make
- - make test
- - |
- if [ $(TRAVIS_ON_NAME:-'linux'} = 'linux' ]
- then
- PROG=`ls cmark-*.*/build/src/cmark` make leakcheck
- fi
|