Skip to content

Commit

Permalink
Fix Travis Cl
Browse files Browse the repository at this point in the history
Broken after "32-bit/64-bit Makefile fix" commit.

Ubuntu "Precise" 12.04.5 supports multilib only until
g++ 4.6 that is not enough to compile Stockfish.

So move to Ubuntu 14.04.4 LTS (Trusty Tahr)

No functional change.
  • Loading branch information
mcostalba committed Apr 9, 2016
1 parent 1cbba8d commit bd04f9a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
@@ -1,4 +1,6 @@
language: cpp
sudo: required
dist: trusty

matrix:
include:
Expand All @@ -7,25 +9,25 @@ matrix:
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.8']
packages: ['g++-multilib']
env:
- COMPILER=g++-4.8
- COMPILER=g++
- COMP=gcc

- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
packages: ['clang-3.7']
sources: ['ubuntu-toolchain-r-test']
packages: ['clang', 'g++-multilib']
env:
- COMPILER=clang++-3.7
- COMPILER=clang++
- COMP=clang

- os: osx
compiler: gcc
env:
- COMPILER=g++-4.8
- COMPILER=g++
- COMP=gcc

- os: osx
Expand Down

0 comments on commit bd04f9a

Please sign in to comment.