Travis: use trusty distro

This commit is contained in:
Corentin Wallez 2017-11-27 18:25:11 -05:00 committed by Corentin Wallez
parent 42dbde1b65
commit b981677848

View File

@ -3,7 +3,8 @@ os:
- osx - osx
# If linux, use precise # If linux, use precise
dist: precise dist: trusty
sudo: false
language: language:
- cpp - cpp
@ -20,16 +21,13 @@ addons:
apt: apt:
sources: sources:
# PPAs to get newer toolchains # PPAs to get newer toolchains
- llvm-toolchain-precise - llvm-toolchain-trusty-5.0
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
# PPA to get a semi-recent cmake (3.2)
- george-edison55-precise-backports
packages: packages:
# Get recent compilers # Get recent compilers
- clang-5.0 - clang-5.0
# Get a newer CMake than the 2.8 default # Pull a recent version of libstdc++
- cmake - libstdc++-6-dev
- cmake-data
# Ninja builds are faster # Ninja builds are faster
- ninja-build - ninja-build
# Required for the code generator, unfortunately this is jinja2 2.6 which lacks some of the options we use # Required for the code generator, unfortunately this is jinja2 2.6 which lacks some of the options we use