aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5c3a404217c2710f766689d66c624203054cdcf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
language: c
compiler:
 - clang
 - gcc
before_install: sudo apt-get update
install: sudo apt-get install bc valgrind perl
script:
 - cmake -D CMAKE_BUILD_TYPE:String="Check" .
 - make
 - make test
 - ( cd tests && ./compat.sh )