From ba8bcc946a84f8ffcbb031e614a941e9acae46f4 Mon Sep 17 00:00:00 2001 From: Sebastien Vincent Date: Tue, 8 Aug 2017 17:18:33 +0200 Subject: [PATCH] Updates travis instructions to use Ubuntu Trusty instead of Ubuntu Precise. --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e29fea04..9a40a3d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: cpp compiler: - g++ +dist: trusty sudo: false addons: apt: @@ -8,14 +9,14 @@ addons: - ubuntu-toolchain-r-test - boost-latest packages: - - libboost1.55-all-dev + - libboost-all-dev - libssl-dev - libcurl4-openssl-dev - - gcc-4.9 - - g++-4.9 + - gcc + - g++ cache: apt: true -script: CXX=g++-4.9 scons install apps samples +script: scons install apps samples branches: only: - master