aboutsummaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2020-05-02 10:57:33 -0700
committerMarco Poletti <poletti.marco@gmail.com>2020-05-02 12:15:15 -0700
commitb0fee156740001614e2834f0728d703a0a0e713d (patch)
treebbb11416d73480cab136e529a1ae3bf4d4476588 /extras
parent9dd77e9d31df4ff72eced73c6fa2ee8ecbc8775c (diff)
downloadgoogle-fruit-b0fee156740001614e2834f0728d703a0a0e713d.tar.gz
Update the Travis CI config to test against Ubuntu 20.04 instead of 19.10 and GCC 10 instead of 9.
Diffstat (limited to 'extras')
-rwxr-xr-xextras/scripts/travis_yml_generator.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/extras/scripts/travis_yml_generator.py b/extras/scripts/travis_yml_generator.py
index 82c9388..8a67784 100755
--- a/extras/scripts/travis_yml_generator.py
+++ b/extras/scripts/travis_yml_generator.py
@@ -146,14 +146,14 @@ def add_bazel_tests(ubuntu_version, smoke_tests=[]):
# TODO: re-enable ASan/UBSan once they work in Travis CI. ATM (as of 18 November 2017) they fail due to https://github.com/google/sanitizers/issues/837
-add_ubuntu_tests(ubuntu_version='19.10', compiler='gcc-7', asan=False, ubsan=False)
-add_ubuntu_tests(ubuntu_version='19.10', compiler='gcc-9', asan=False, ubsan=False,
+add_ubuntu_tests(ubuntu_version='20.04', compiler='gcc-7', asan=False, ubsan=False)
+add_ubuntu_tests(ubuntu_version='20.04', compiler='gcc-10', asan=False, ubsan=False,
smoke_tests=['DebugPlain', 'ReleasePlain'])
-add_ubuntu_tests(ubuntu_version='19.10', compiler='clang-6.0', stl='libstdc++',
+add_ubuntu_tests(ubuntu_version='20.04', compiler='clang-6.0', stl='libstdc++',
smoke_tests=['DebugPlain', 'DebugAsanUbsan', 'ReleasePlain'])
-add_ubuntu_tests(ubuntu_version='19.10', compiler='clang-10.0', stl='libstdc++')
+add_ubuntu_tests(ubuntu_version='20.04', 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++',
+add_ubuntu_tests(ubuntu_version='20.04', compiler='clang-9.0', stl='libc++',
# Disabled due to https://bugs.llvm.org/show_bug.cgi?id=41625.
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).