diff options
author | Peter Newman <peternewman@users.noreply.github.com> | 2019-03-26 01:02:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-26 01:02:43 +0000 |
commit | 558a4b135cfbc9e72648cfbbc402dde22a36d632 (patch) | |
tree | f0345b7f3ba1f89f0a556236eac186079333a5c5 | |
parent | d4663f39bf3272316d5c9e8480e981f54d4f48fb (diff) | |
download | midimonster-558a4b135cfbc9e72648cfbbc402dde22a36d632.tar.gz midimonster-558a4b135cfbc9e72648cfbbc402dde22a36d632.tar.bz2 midimonster-558a4b135cfbc9e72648cfbbc402dde22a36d632.zip |
Install g++8 too, for the C++ compiles
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e01cb2a..df4a97a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,7 @@ addons: packages: &core_build_gpp_latest - *core_build - gcc-8 + - g++-8 packages: &core_build_clang_latest - *core_build - clang-6.0 @@ -165,7 +166,8 @@ before_install: - if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" = "clang" ]; then export CC="clang-6.0"; export CXX="clang-6.0"; fi #Report the compiler versions - $CC --version - - $CXX --version +#OS X uses something other than $CXX variable + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then $CXX --version; fi - if [ "$TASK" == "spellintian" -o "$TASK" == "spellintian-duplicates" ]; then wget "http://archive.ubuntu.com/ubuntu/pool/main/l/lintian/lintian_2.5.104_all.deb"; sudo dpkg -i lintian_*.deb; sudo apt-get install -f -y; fi # Install a later lintian after_script: |