diff options
author | James McCoy <jamessan@jamessan.com> | 2017-08-13 12:05:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-13 12:05:34 -0400 |
commit | 3c8d063786285987876b4e5ca98b301037945868 (patch) | |
tree | abe9a99bbc1960674b421a5ff034a46ae86f722d | |
parent | bf1b1ea6eebf254ed975b743241a598c6aeeb132 (diff) | |
parent | a2947a46a1064cce9d81ef7f468b3b1061de71af (diff) | |
download | rneovim-3c8d063786285987876b4e5ca98b301037945868.tar.gz rneovim-3c8d063786285987876b4e5ca98b301037945868.tar.bz2 rneovim-3c8d063786285987876b4e5ca98b301037945868.zip |
Merge pull request #7158 from jamessan/move-tsan-stage
travis: Move TSAN to last stage and allow failure
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 45c2dcb832..2bab1635ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,9 +57,6 @@ jobs: env: > CLANG_SANITIZER=ASAN_UBSAN CMAKE_FLAGS="$CMAKE_FLAGS -DPREFER_LUA=ON" - - os: linux - compiler: clang-4.0 - env: CLANG_SANITIZER=TSAN - stage: normal builds os: linux compiler: gcc-5 @@ -79,12 +76,16 @@ jobs: - stage: lint os: linux env: CI_TARGET=lint - - stage: coverage + - stage: Flaky builds os: linux compiler: gcc-5 env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON" + - os: linux + compiler: clang-4.0 + env: CLANG_SANITIZER=TSAN allow_failures: - env: GCOV=gcov-5 CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON" + - env: CLANG_SANITIZER=TSAN fast_finish: true before_install: ci/before_install.sh |