diff options
author | Adam <Adam@anope.org> | 2014-04-02 15:45:53 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-04-02 16:25:04 -0400 |
commit | 571112b9f17f4f32a4dcc50a14b1e78194348df9 (patch) | |
tree | 7a10899dce97765dcec27d5cf825b641f76c6def /.travis.yml | |
parent | 8020b411cdd534a6cf6df60880f6c0980d428365 (diff) |
Fix travis build
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 023a7ce00..15657dadf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ language: cpp -compiler: - - clang - before_script: + - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + - sudo apt-get update -qq + - sudo apt-get install -y g++-4.8 + - export CXX="g++-4.8" CC="gcc-4.8" - mkdir build - cd build - cmake -DINSTDIR:STRING=~/services -DDEFUMASK:STRING=077 -DCMAKE_BUILD_TYPE:STRING=DEBUG -DUSE_RUN_CC_PL:BOOLEAN=ON .. |