summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2017-01-26 12:53:16 -0800
committerRJ Ryan <rryan@mixxx.org>2017-01-26 12:53:16 -0800
commit728de55b46a63564c4881d95f04ad6d96e2db40f (patch)
tree954866f81892817a9568303e3512c1cd1b7a8cd1 /.travis.yml
parent63a25e6ad74fe7aba186dc2e3b1b464f342c2116 (diff)
Disable asan in Mac build.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5ae5269df3..982f54902c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -76,7 +76,7 @@ install:
# also need to avoid going over 4MB of output so we turn off verbose mode.
# NOTE(rryan): 12/31/2016 Homebrew has dropped qt4 support. Build with qt5.
# TODO(rryan): localecompare doesn't work on Travis with qt5 for some reason.
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export EXTRA_FLAGS="optimize=none asan=1 verbose=0 qt5=1 localecompare=0" ; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export EXTRA_FLAGS="optimize=none asan=0 verbose=0 qt5=1 localecompare=0" ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export EXTRA_FLAGS="localecompare=1" ; fi
####