Skip to content

Commit

Permalink
set travis back to gcc 4.6 version
Browse files Browse the repository at this point in the history
The gcc-4.8 patch requires travis to download and install gcc-4.8
from an ubuntu ppa. This takes a few mintues and the gcc build is
already fairly close to the timelimit, so this change can push
some builds over the edge. Since it doesn't seem to be strictly
necessary right now, I comment out the code for v 4.8 install.
  • Loading branch information
cbeck88 committed Jun 18, 2014
1 parent bc4b4a9 commit 458c2f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -14,11 +14,11 @@ matrix:
env: WML_TESTS=true STRICT_COMPILATION=True
- compiler: gcc
env: WML_TESTS=true STRICT_COMPILATION=False
before_install:
- if [ "$CXX" = "g++" ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get update -qq; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
#before_install: # Commented this block out because the download can take a few minutes and cause the gcc build to timeout.
# - if [ "$CXX" = "g++" ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y; fi
# - if [ "$CXX" = "g++" ]; then sudo apt-get update -qq; fi
# - if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
# - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-iostreams-dev libboost-program-options-dev libboost-regex-dev libboost-system-dev libboost-test-dev libcairo2-dev libfribidi-dev libpango1.0-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev
Expand Down

0 comments on commit 458c2f0

Please sign in to comment.