Files
sss/.travis.yml
Daan Sprenkels b536d6f0f1 travis: add new configuration
This commit enables travis-ci on linux and osx
with memory checking only enabled on linux.
2017-04-25 18:53:56 +02:00

19 lines
261 B
YAML

language: c
os:
- linux
- osx
compiler:
- clang
- gcc
addons:
apt:
packages:
- valgrind
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export MEMCHECK="valgrind -q --leak-check=full --error-exitcode=1"; fi
- make && make test