Commit ce0d821377f747ec11c5358968ef7a6bbce87ac3

Authored by Jojo-1000
Committed by Moritz Wirger
1 parent b1e2b5cc

Update travis distribution to bionic.

Showing 1 changed file with 5 additions and 11 deletions
.travis.yml
... ... @@ -3,12 +3,12 @@ language: generic
3 3 env:
4 4 global:
5 5 # Ubuntu version
6   - - LINUX_DIST=xenial
  6 + - LINUX_DIST=bionic
7 7 - DEPS_DIR=${TRAVIS_BUILD_DIR}/deps
8 8 # compiler settings
9 9 - COMPILER_NAME=gcc
10   - - CXX=g++-9
11   - - CC=gcc-9
  10 + - CXX=g++
  11 + - CC=gcc
12 12 # Misc
13 13 - RUN_TESTS=true
14 14 - COVERAGE=false
... ... @@ -17,7 +17,7 @@ env:
17 17 matrix:
18 18 include:
19 19 - os: linux
20   - dist: xenial
  20 + dist: bionic
21 21 sudo: true
22 22 compiler: gcc
23 23 addons:
... ... @@ -25,14 +25,8 @@ matrix:
25 25 packages:
26 26 # Misc
27 27 - python-yaml
28   - - gcc-5.5
29   - - g++-5.5
30 28 - doxygen
31 29 - graphviz
32   - sources: &sources
33   - - ubuntu-toolchain-r-test
34   - - llvm-toolchain-xenial-6.0
35   -
36 30 before_install:
37 31 # Combine global build options with OS/compiler-dependent options
38 32 - export CMAKE_OPTIONS=${CMAKE_OPTIONS}" "${ENV_CMAKE_OPTIONS}
... ... @@ -42,7 +36,7 @@ before_install:
42 36  
43 37 install:
44 38 # CodeCov
45   - - sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-5 90
  39 + - sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-7 90
46 40 # we have to build lcov on our own, because it is not possible to install lcov-1.13 with apt
47 41 - wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.13.orig.tar.gz && tar xf lcov_1.13.orig.tar.gz && make -C lcov-1.13 "PREFIX=${HOME}/.local" install && export PATH="${PATH}:${HOME}/.local/bin";
48 42 # show info
... ...