Code

.gitignore: Ignore test-suite.log.
[sysdb.git] / .travis.yml
index 3d4f12e8ee1e2766d7b9b6bdf4a8eba314a78b09..87badb67b5e6da759f1a72b8eb031f8740e321f5 100644 (file)
@@ -11,10 +11,15 @@ before_install:
 install:
   - sudo apt-get install -qq check flex bison libtool libltdl-dev
   - sudo apt-get install -qq libdbi-dev libedit-dev libreadline-dev
-  - sudo pip install cpp-coveralls --use-mirrors
+  - sudo pip install cpp-coveralls
+  - pip show cpp-coveralls
 script: ./t/cibuild.sh
 after_success:
-  - coveralls --exclude t --verbose
+  - test "${CC}x" != "gccx" || coveralls --build-root src --exclude t
 branches:
   only:
     - master
+matrix:
+  exclude:
+    - compiler: gcc
+      env: CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"