blob: 07c11f5171b3ce29029882e941df22a793a60338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
language: c
compiler:
- clang
- gcc
before_install:
# we need a more recent cmake than travis provides (at least 2.8.9):
- echo "yes" | sudo add-apt-repository ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq cmake python3 valgrind
script:
- make testtarball
- PROG=`ls cmark-*.*/build/src/cmark` make leakcheck
|