diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-12-16 22:27:07 +0100 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2016-06-01 21:20:30 +0200 |
commit | a6731f9a977eb1e13d1f96617e142878829aa9d0 (patch) | |
tree | 2bb9bae90bc9c0c017bc8453f47f387ac8c7c6ec /.travis.yml | |
parent | a6f6bb4fccb6c0a5123ef7fd553cf12b6a31db1f (diff) |
Travis: Move to Ubuntu 14.04 Trusty Travic-CI from Ubuntu 12.04
(cherry picked from commit 21ee9be110b20b95e319c8aa14d64083fbf33736)
# Conflicts:
# .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 3edd9096ca8..266657eee33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +sudo: required +dist: trusty + language: cpp compiler: - clang @@ -6,16 +9,11 @@ git: depth: 1 before_install: - - echo "yes" | sudo add-apt-repository ppa:george-edison55/precise-backports - - echo "yes" | sudo add-apt-repository ppa:boost-latest/ppa - - echo "yes" | sudo add-apt-repository ppa:ubuntu-toolchain-r/test - - echo "yes" | sudo add-apt-repository 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' - - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get -qq update - - sudo apt-get -qq install build-essential libtool gcc-4.8 g++-4.8 make cmake cmake-data openssl clang-3.5 + - sudo apt-get -qq install build-essential libtool make cmake cmake-data openssl - sudo apt-get -qq install libssl-dev libmysqlclient-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev - sudo apt-get -qq install libboost1.55-dev libboost-thread1.55-dev libboost-filesystem1.55-dev libboost-system1.55-dev libboost-program-options1.55-dev libboost-iostreams1.55-dev libboost-regex1.55-dev - - export CC=clang-3.5 CXX=clang++-3.5 + - sudo apt-get -qq install mysql-server - git config user.email "travis@build.bot" && git config user.name "Travis CI" - git tag -a -m "Travis build" init |