aboutsummaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2020-03-29 16:32:38 -0700
committerMarco Poletti <poletti.marco@gmail.com>2020-03-29 16:32:38 -0700
commit3d8b371ebf619c3f952cc25742fe776cddf28d84 (patch)
treedb9a21b2090214c63e095a48aac61126b9c8bbeb /extras
parent223c79cbe53b06b66c378c4ee0efb17bd596938c (diff)
downloadgoogle-fruit-3d8b371ebf619c3f952cc25742fe776cddf28d84.tar.gz
Disable Clang tidy in libc++ CI tests, it segfaults and can't find STL headers (these issues may or may not be related).
Diffstat (limited to 'extras')
-rwxr-xr-xextras/scripts/travis_yml_generator.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/scripts/travis_yml_generator.py b/extras/scripts/travis_yml_generator.py
index d898921..82c9388 100755
--- a/extras/scripts/travis_yml_generator.py
+++ b/extras/scripts/travis_yml_generator.py
@@ -155,7 +155,9 @@ add_ubuntu_tests(ubuntu_version='19.10', compiler='clang-10.0', stl='libstdc++')
# Using Clang 10 + libc++ doesn't work as of March 2020, it can't find STL headers.
add_ubuntu_tests(ubuntu_version='19.10', compiler='clang-9.0', stl='libc++',
# Disabled due to https://bugs.llvm.org/show_bug.cgi?id=41625.
- use_precompiled_headers_in_tests=False)
+ use_precompiled_headers_in_tests=False,
+ # As of March 2020, Clang tidy segfaults and can't find STL headers (not sure if these issues are related or independent).
+ clang_tidy=False)
add_ubuntu_tests(ubuntu_version='18.04', compiler='gcc-5', asan=False, ubsan=False)
add_ubuntu_tests(ubuntu_version='18.04', compiler='gcc-8', asan=False, ubsan=False)