diff options
author | Tom Rini <trini@konsulko.com> | 2020-02-12 17:14:57 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-27 17:48:40 -0400 |
commit | 98178bdcdd4f85647406b914163c8937525f1a16 (patch) | |
tree | 562468bf7cd644a9785750046c6a52e6c88ef3b5 /.travis.yml | |
parent | 3bab3dcacd042c24639c5042115a9932d8df90d1 (diff) |
travis: Switch over to using LLVM-10
At this point LLVM-7 is rather old. Switch over to LLVM-10 to enable
some amount of CI coverage with newer compilers.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index d9dadc6ba7c..fbfaaaff25d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,9 +10,10 @@ language: c addons: apt: + update: true sources: - - ubuntu-toolchain-r-test - - llvm-toolchain-bionic-7 + - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main' + key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key' packages: - autopoint - cppcheck @@ -38,7 +39,7 @@ addons: - liblz4-tool - lzma-alone - libisl15 - - clang-7 + - clang-10 - srecord - graphviz - coreutils @@ -499,7 +500,7 @@ matrix: - name: "test/py sandbox with clang" env: - TEST_PY_BD="sandbox" - OVERRIDE="-O clang-7" + OVERRIDE="-O clang-10" - name: "test/py sandbox_spl" env: - TEST_PY_BD="sandbox_spl" |