TravisCI config file.

This commit is contained in:
John McNamara 2014-06-08 19:40:06 +01:00
parent a27b6de38e
commit 0b0a38c1d1

22
.travis.yml Normal file
View file

@ -0,0 +1,22 @@
language: c
compiler:
- clang
- gcc
install:
- sudo apt-get install -y zlib1g-dev
- sudo apt-get install -y python-pytest
- sudo apt-get install -y valgrind
- wget http://googletest.googlecode.com/files/gtest-1.7.0.zip
- unzip gtest-1.7.0.zip
- cd gtest-1.7.0
- ./configure
- make
- sudo cp -a include/gtest /usr/include
- sudo cp -a lib/.libs/* /usr/lib/
script:
- make test_functional
- make test_unit
- make test_valgrind