of course travsi gcc too old for sanitizers
[sddekit.git] / .travis.yml
blobb1f1752b9ed8fd2048c9364bb58e0ea72a5d9757
1 addons:
2  apt:
3   packages:
4   - valgrind
5   - python-numpy
6   - libasan0
7   - libubsan0
8 before_install:
9   - pip install --user cpp-coveralls cython
10 language: c
11 install:
12   - make SANFLAGS= tests
13   - make -B BUILD=cov tests
14 script:
15   - valgrind --error-exitcode=1 --track-origins=yes --leak-check=full ./tests
16   - ./testscov
17 #  - cd python && make test && cd ..
18 after_success:
19   - coveralls --gcov-options '-o ./ src/*.c'