diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-25 18:49:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-25 18:49:28 -0400 |
commit | 57b56e37e5f531863827022694fbe2335e2a4d5c (patch) | |
tree | afeb42aee32b1a787689fc2f83904b1ff2d74c64 | |
parent | c69ccca56d5e5e916a2aef6eedbcea2b5962a505 (diff) | |
download | rneovim-57b56e37e5f531863827022694fbe2335e2a4d5c.tar.gz rneovim-57b56e37e5f531863827022694fbe2335e2a4d5c.tar.bz2 rneovim-57b56e37e5f531863827022694fbe2335e2a4d5c.zip |
ci: Remove MSAN build until it is fixed. (#4966)
Closes #4956
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 1158acf076..8334b03cdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,6 @@ env: # Environment variables for Clang sanitizers. - ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan" - ASAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER" - - MSAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER" - TSAN_OPTIONS="external_symbolizer_path=$LLVM_SYMBOLIZER log_path=$LOG_DIR/tsan" - UBSAN_OPTIONS="log_path=$LOG_DIR/ubsan" # Environment variables for Valgrind. @@ -76,9 +75,6 @@ matrix: env: GCOV=llvm-cov CLANG_SANITIZER=ASAN_UBSAN CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON" - os: linux compiler: clang - env: CLANG_SANITIZER=MSAN - - os: linux - compiler: clang env: CLANG_SANITIZER=TSAN - os: osx compiler: clang @@ -87,9 +83,6 @@ matrix: - os: linux env: BUILD_MINGW=ON fast_finish: true - allow_failures: - # TODO: Remove when all MSan errors have been fixed. - - env: CLANG_SANITIZER=MSAN before_install: .ci/before_install.sh install: .ci/install.sh |