Code

.travis.yml: Exclude AddressSanitizer runs with GCC.
[sysdb.git] / .travis.yml
index d3bfbe959e61494ada6cb5ff156e2c64065ac54a..f3d8c0e693768fb170ea2aba8fb62a6d2165f739 100644 (file)
@@ -2,6 +2,7 @@ language: c
 env:
   - CIOPTIONS="--with-readline=libedit"
   - CIOPTIONS="--with-readline=libreadline"
+  - CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"
 compiler:
   - clang
   - gcc
@@ -17,3 +18,7 @@ after_success:
 branches:
   only:
     - master
+matrix:
+  exclude:
+    - compiler: gcc
+      env: CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"