From 53170ca2f24112df6f85b7e8313adf8ce839c627 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 2 Sep 2018 17:28:01 +0200 Subject: [PATCH] .travis.yml: install Boost 1.67 from a PPA Apparently, Travis-CI will never upgrade its ancient Ubuntu Trusty, so I have to get Boost from somewhere else. Thanks to Martin Hierholzer for his PPA. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4d2d388db..3495a0a98 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,11 @@ matrix: apt: sources: - ubuntu-toolchain-r-test + - sourceline: 'ppa:mhier/libboost-latest' packages: - g++-6 - libcppunit-dev - - libboost-dev + - boost1.67 env: - MATRIX_EVAL="export CC=gcc-6 CXX=g++-6" @@ -21,10 +22,11 @@ matrix: apt: sources: - ubuntu-toolchain-r-test + - sourceline: 'ppa:mhier/libboost-latest' packages: - g++-8 - libcppunit-dev - - libboost-dev + - boost1.67 env: - MATRIX_EVAL="export CC=gcc-8 CXX=g++-8"