Code

.travis.yml: Exclude AddressSanitizer runs with GCC.
authorSebastian Harl <sh@tokkee.org>
Sun, 12 Jan 2014 17:53:07 +0000 (18:53 +0100)
committerSebastian Harl <sh@tokkee.org>
Sun, 12 Jan 2014 17:53:07 +0000 (18:53 +0100)
Travis-CI's GCC does not support the address sanitizer options.

.travis.yml

index 3d4f12e8ee1e2766d7b9b6bdf4a8eba314a78b09..f3d8c0e693768fb170ea2aba8fb62a6d2165f739 100644 (file)
@@ -18,3 +18,7 @@ after_success:
 branches:
   only:
     - master
+matrix:
+  exclude:
+    - compiler: gcc
+      env: CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"