.travis(.yml): no longer need llvm-toolchain-trusty-7

clang-7 is enable by default
This commit is contained in:
Alexis La Goutte 2018-12-25 18:53:06 +00:00
parent 12ebeb30d0
commit 7cc7c06c7b
1 changed files with 0 additions and 3 deletions

View File

@ -12,10 +12,8 @@ addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
- llvm-toolchain-trusty-7
packages: packages:
- g++-8 - g++-8
- clang-7
- autoconf - autoconf
- automake - automake
- autotools-dev - autotools-dev
@ -35,7 +33,6 @@ addons:
before_install: before_install:
- $CC --version - $CC --version
- if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-7" CC="clang-7"; fi
- $CC --version - $CC --version
- go version - go version
- cmake --version - cmake --version