aboutsummaryrefslogtreecommitdiff
path: root/ci/common
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-01-01 21:00:07 -0500
committerJames McCoy <jamessan@jamessan.com>2018-01-02 08:15:31 -0500
commit90aae43984ce3b6a5193ce3bc18293c28db6c606 (patch)
treea0fa7077320c034d01338d92c56113e774d8728e /ci/common
parent60716371e97dae916c6525e9ba840aae562069bb (diff)
downloadrneovim-90aae43984ce3b6a5193ce3bc18293c28db6c606.tar.gz
rneovim-90aae43984ce3b6a5193ce3bc18293c28db6c606.tar.bz2
rneovim-90aae43984ce3b6a5193ce3bc18293c28db6c606.zip
travis: Use Ubuntu's clang instead of llvm's repo
The llvm repos commonly have access issues, so removing them will improve stability of the Travis builds. Filtering check_log's output through asan_symbolize also avoids the version dance every time a new clang version makes its way into Travis.
Diffstat (limited to 'ci/common')
-rw-r--r--ci/common/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh
index 55f76ca798..2de89dee79 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -71,7 +71,7 @@ valgrind_check() {
}
asan_check() {
- check_logs "${1}" "*san.*"
+ check_logs "${1}" "*san.*" | asan_symbolize
}
run_unittests() {(