summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d67dd57cd9eabcd4929975d80c7c8f487a60b09d (plain)
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
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
         brew update
         # We test on OSX without python3, to make sure that works
         # brew install python3
         brew install valgrind
     fi
script:
 - make
 - make test
 - PROG=`ls cmark-*.*/build/src/cmark` make leakcheck