aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 4ef377d..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-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
- echo "Building without python3, to make sure that works."
- fi
-script:
- - make
- - make test
- - |
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]
- then
- make leakcheck
- fi